FROM registry.cn-hangzhou.aliyuncs.com/xxxxxx/dotnet/aspnet:5.0 WORKDIR /app COPY ./xxxxxx . ENV ASPNETCORE_ENVIRONMENT QA EXPOSE 30015 ENV TZ=Asia/Sh ...
分类:
其他好文 时间:
2021-01-28 12:08:06
阅读次数:
0
1、下载anacona的python3.7版本,这里下载使用北外的镜像下载,速度巨快!!!https://mirrors.bfsu.edu.cn/anaconda/archive/ 2、换源,让你随后的安装飞起来 打开Anaconda Prompt 键入 conda config --set sho ...
之前使用的vue-cli2的是否可以在创建项目时直接引入vue-router,但是现在Vue-cli3新建项目后却少了很多东西,我们需要自己来安装使用路由。具体方案如下: 安装路由 npm install vue-router 创建router.js与main.js同级 router.js中的内容为 ...
分类:
其他好文 时间:
2021-01-27 13:18:42
阅读次数:
0
client.go:9:2: cannot find module providing package google.golang.org/grpc: working directory is not part of a module 因为开启mod模式了export GO111MODULE=aut ...
分类:
其他好文 时间:
2021-01-26 12:04:45
阅读次数:
0
Dockerfile介绍 Dockerfile类似于shell的脚本,由一条条指令组成,Docker进程可以通过读取Dockerfile中的指令,依据指令内容自动构建生成镜像。 dockerfile 官方文档 Dockerfile常用指令 FROM LABEL RUN EXPOSE COPY ADD ...
分类:
其他好文 时间:
2021-01-25 11:36:58
阅读次数:
0
CSS Copy-paste the stylesheet <link> into your <head> before all other stylesheets to load our CSS. <link href="https://cdn.jsdelivr.net/npm/bootstrap ...
分类:
其他好文 时间:
2021-01-25 11:24:06
阅读次数:
0
编写Dockerfile # 使用哪个镜像为基础 FROM nginx # 安装apt-get后清理垃圾文件 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* # 复制文件 COPY index. ...
分类:
其他好文 时间:
2021-01-20 11:55:13
阅读次数:
0
#!/bin/bash # #******************************************************************** #Author: will #QQ: 1052165684 #Date: 2021-01-16 #FileName: push_ss ...
分类:
其他好文 时间:
2021-01-18 10:31:34
阅读次数:
0
前言 This is a work timer.It can set every working period to remind you that it's time to have a rest, drink some water and exercise your body. Only in ...
分类:
其他好文 时间:
2021-01-14 11:16:06
阅读次数:
0
Docker 换国内源 先创建daemon.json文件,系统默认是没有这个文件。 sudo vim /etc/docker/daemon.json 复制代码 编辑daemon.json,填入以下内容。 { "registry-mirrors": [ "https://kfwkfulq.mirror ...
分类:
其他好文 时间:
2021-01-13 11:24:55
阅读次数:
0