Refactor docker-compose to match standard NPM setup (remove internal network)
All checks were successful
Deploy to Production / deploy (push) Successful in 3s

This commit is contained in:
2026-02-16 13:45:16 +01:00
parent 000ef8f715
commit 588a131d68

View File

@@ -1,14 +1,17 @@
version: '3.8'
services:
app:
container_name: nonograms-app
nonograms:
container_name: nonograms
build:
context: .
dockerfile: Dockerfile
ports:
- "8081:80"
expose:
- "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