mirror of
https://gitee.com/NexIoT/Universal-IoT-Java.git
synced 2026-08-31 00:19:29 +08:00
19 lines
362 B
YAML
19 lines
362 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
frontend:
|
|
build:
|
|
context: ..
|
|
dockerfile: ${DOCKERFILE_NAME:-Dockerfile}
|
|
container_name: cn-universal-frontend
|
|
restart: unless-stopped
|
|
ports:
|
|
- "${FRONTEND_PORT:-80}:80"
|
|
networks:
|
|
- webui-network
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
|
|
networks:
|
|
webui-network:
|
|
driver: bridge |