-
-
Notifications
You must be signed in to change notification settings - Fork 867
Expand file tree
/
Copy pathdocker-compose-demo.yml
More file actions
24 lines (22 loc) · 491 Bytes
/
Copy pathdocker-compose-demo.yml
File metadata and controls
24 lines (22 loc) · 491 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
services:
nginx-demo-1:
image: uozi/nginx-ui-demo:latest
restart: always
networks:
- nginx-ui-network
environment:
- NGINX_UI_NODE_DEMO=true
ports:
- "9003:80"
nginx-demo-2:
image: uozi/nginx-ui-demo:latest
restart: always
environment:
- NGINX_UI_NODE_DEMO=true
networks:
- nginx-ui-network
networks:
nginx-ui-network:
driver: bridge
driver_opts:
com.docker.network.bridge.enable_ip_masquerade: 'false'