Restore correct docker-compose.yml (remove piggy-bank, fix service name)

This commit is contained in:
2026-02-22 15:41:42 +00:00
parent 70ba5ebdb3
commit fe72508717

View File

@@ -1,17 +1,20 @@
services: services:
piggy-bank: app:
container_name: nonograms-app container_name: nonograms-app
build: . build:
restart: unless-stopped context: .
# ports: dockerfile: Dockerfile
# - "8081:80" ports:
- "8081:80"
expose: expose:
- "80" - "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: networks:
- npm_public - npm_public
networks: networks:
npm_public: npm_public:
external: true external: true