From bf7cc4cb1ddfc4e992d7e8b58f1c83249594bf04 Mon Sep 17 00:00:00 2001 From: Grzegorz Kucmierz Date: Sun, 22 Feb 2026 15:37:00 +0000 Subject: [PATCH] Add expose 80 to docker-compose --- docker-compose.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 5c89463..2df075e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,16 +1,13 @@ services: - app: + piggy-bank: container_name: nonograms-app - build: - context: . - dockerfile: Dockerfile - ports: - - "8081:80" + build: . 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 + # ports: + # - "8081:80" + expose: + - "80" networks: - npm_public