From fe72508717f06d9ac35d767707a2276ccdddf1f3 Mon Sep 17 00:00:00 2001 From: Grzegorz Kucmierz Date: Sun, 22 Feb 2026 15:41:42 +0000 Subject: [PATCH] Restore correct docker-compose.yml (remove piggy-bank, fix service name) --- docker-compose.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 2df075e..245a8fb 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,17 +1,20 @@ - services: - piggy-bank: + app: container_name: nonograms-app - build: . - restart: unless-stopped - # ports: - # - "8081:80" + 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 -