1容器保存为镜像 我们可以通过以下命令将容器保存为镜像 docker commit nginx mynginx nginx是容器名称 mynginx是新的镜像名称 此镜像的内容就是你当前容器的内容,接下来你可以用此镜像再次运行新的容器2镜像备份 docker save -o mynginx.tar ...
分类:
其他好文 时间:
2021-05-03 11:59:25
阅读次数:
0
npm install moduleName 命令 1. 安装模块到项目node_modules目录下。2. 不会将模块依赖写入devDependencies或dependencies 节点。3. 运行 npm install 初始化项目时不会下载模块。 npm install -g moduleN ...
分类:
其他好文 时间:
2021-05-03 11:54:10
阅读次数:
0
1、安装 npm install postcss-plugin-px2rem --save-dev 2、引入配置 // vue.config.js const px2rem = require("postcss-plugin-px2rem"); module.exports = { css: { l ...
分类:
其他好文 时间:
2021-04-30 12:39:06
阅读次数:
0
1. 安装 npm install vue-cropper --save-dev 2. 使用 <template> <div> <el-dialog title="选择图片" :visible.sync="isShowCropper" :before-close="handleClose" widt ...
分类:
其他好文 时间:
2021-04-29 11:48:35
阅读次数:
0
import tensorflow as tf import time import numpy as np import matplotlib.pyplot as plt import sys from tensorflow import keras import os from tensorfl ...
分类:
其他好文 时间:
2021-04-29 11:43:25
阅读次数:
0
cookie_js npm install cookie_js --save 储存 cookie.set('key', 'value'); cookie.set(key1: 'value1'; key2: 'value2'); 获取 cookie.get('key'); cookie.get('ke ...
分类:
Web程序 时间:
2021-04-27 15:08:52
阅读次数:
0
1.安装依赖npm install --save-dev stylelint stylelint-scss stylelint-config-standard stylelint-csstree-validator stylelint-config-prettier 2.安装插件stylelint ...
分类:
其他好文 时间:
2021-04-27 14:36:39
阅读次数:
0
使用vue_cli生成项目 引入ant-design-vue 使用cnpm引入ant-design-vue cnpm install ant-design-vue --save cnpm install antd-init -g 修改main.js加入依赖 在文件中全局引入 //引入ant-desi ...
分类:
其他好文 时间:
2021-04-27 14:35:37
阅读次数:
0
index.js import Vue from 'vue'; import Vuex from 'vuex'; import base from './modules/base'; import user from './modules/user'; Vue.use(Vuex); // store ...
分类:
其他好文 时间:
2021-04-26 13:39:52
阅读次数:
0
Centos6 使用的是iptables,Centos7 使用的是filewall(-cmd)iptables 用于过滤数据包,属于网络层防火墙。firewall 能够允许哪些服务可用,那些端口可用...属于更高一层的防火墙。 1.firewalld的基本使用启动: systemctl start ...
分类:
其他好文 时间:
2021-04-26 13:32:00
阅读次数:
0