Restore npm_public network in docker-compose.yml

This commit is contained in:
2026-02-22 15:31:51 +00:00
parent 8291c8f74c
commit a59aeb93e6

View File

@@ -1,17 +1,20 @@
version: '3.8'
services:
nonograms:
container_name: ${CONTAINER_NAME:-nonograms}
app:
container_name: nonograms-app
build:
context: .
dockerfile: Dockerfile
expose:
- "80"
ports:
- "8081:80"
restart: unless-stopped
# Uncomment the following lines if you want to mount the configuration locally for development/testing
volumes:
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
networks:
- npm_public
networks:
npm_public:
external: true