nginx-ui/docker-compose-demo.yml
2024-10-23 17:07:57 +08:00

21 lines
405 B
YAML

version: '3'
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: