fix: build nginx from Dockerfile instead of volume mount

This commit is contained in:
2026-03-17 02:10:08 +00:00
parent 8f385e71cb
commit 5e5998845b

View File

@@ -96,12 +96,10 @@ services:
- backend - backend
nginx: nginx:
image: nginx:alpine build: ./nginx
restart: unless-stopped restart: unless-stopped
ports: ports:
- "8091:80" - "8091:80"
volumes:
- ./nginx/nginx.conf:/etc/nginx/nginx.conf:ro
depends_on: depends_on:
- backend - backend
- frontend - frontend