docker-compose version: "3" services: user-dashboard: build: . volumes: - .:/data/code/ - /proc:/writable-proc ports: - "8891:8891" networks: - walkof ...
分类:
其他好文 时间:
2020-06-05 21:22:38
阅读次数:
79
webpack.config.js const { resolve } = require('path'); const HtmlWebpackPlugin = require('html-webpack-plugin'); module.exports = { entry: './src/js/i ...
分类:
Web程序 时间:
2020-06-05 00:58:26
阅读次数:
83
1.查看开放端口列表 firewall-cmd --list-ports --查看开放端口列表 开启防火墙 systemctl start firewalld 关闭防火墙 systemctl stop firewalld 查看防火墙状态 systemctl status firewalld 2.开放 ...
分类:
其他好文 时间:
2020-06-04 10:18:44
阅读次数:
153
举个例子,假如一个应用程序在名为myapp的目录中,并且docker-compose.yml如下所示: 12345678 version: '2'services: web: build: . ports: - "8000:8000" db: image: postgres 当我们运行docker- ...
分类:
其他好文 时间:
2020-06-03 20:21:13
阅读次数:
66
1.面向对象编程 1.1 对象封装 函数的简单编写到对象封装 //简单的函数编写 function checkName() { console.log("checkName") return true; } function checkEmail(a) { console.log("checkEma ...
分类:
其他好文 时间:
2020-06-03 17:40:36
阅读次数:
76
这一节,我们来讲规矩,谈网格,做人可以不要脸,不讲规矩,不讲道理(特指傲娇兽),但底线还是要有的,如同网格一样,不能超出。 jeet 这里我们别人封装好的模块,不过呢,我们也会详细介绍一下原理。首先我们安装以下 jeet 框架 npm install --save jeet 这个 jeet 框架有 ...
分类:
Web程序 时间:
2020-06-01 22:14:58
阅读次数:
77
01 准备环境 环境:ubuntu 16.04 环境(物理 or 虚拟) 确认 CPU 是否支持虚拟化: # egrep -o '(vmx|svm)' /proc/cpuinfo # vmx 如果不支持,开启 KVM 嵌套虚拟化之后再重启。 1.1 安装 KVM 环境 sudo apt-get in ...
分类:
系统相关 时间:
2020-05-31 22:07:40
阅读次数:
123
apiVersion: apps/v1 kind: Deployment metadata: name: nginx spec: replicas: 1 selector: matchLabels: app: nginx template: metadata: labels: app: nginx ...
分类:
其他好文 时间:
2020-05-31 16:15:45
阅读次数:
68
apiVersion: apps/v1 kind: Deployment metadata: name: mysql2 spec: replicas: 1 selector: matchLabels: app: mysql2 template: metadata: labels: app: mysq ...
分类:
数据库 时间:
2020-05-31 16:02:50
阅读次数:
97
ubuntu换源 目的:ubuntu默认的源是国外的,使用apt-get的时候很慢,换成国内的源可以在安装软件时快很多很多。我用的是ubuntu16.04。 相关文件: /etc/apt/sources.list 步骤: (1).先备份这个文件(以防以后需要) sudo cp /etc/apt/so ...
分类:
系统相关 时间:
2020-05-29 09:54:05
阅读次数:
101