1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| version: '3.4'
|
| services:
| nginx:
| build:
| context: ../
| dockerfile: ./docker/nginx/Dockerfile
| image: admin_net_web:1.2
| ports:
| - 81:80
| restart: "always"
| volumes:
| - node_modules:/build/node_modules:rw
| # network_mode: host #宿主网络,与宿主机共享网络,安全性不佳,本地开发使用,淦,不支持windows,仅支持Linux
| volumes:
| node_modules:
|
|