From 1c31b431e4502116f4d9629d5a2e8896289a1504 Mon Sep 17 00:00:00 2001 From: Stef Date: Mon, 11 Aug 2025 02:05:33 +0200 Subject: [PATCH] Update docker-compose.yaml --- docker-compose.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 58fe3ad..f94ca57 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,9 +1,9 @@ -version: "3.9" services: app: build: . - container_name: my_python_sqlite_app + container_name: cal_counter ports: - - "5000:80" # change if needed + - "5000:80" volumes: - - ./data:/app/instance # maps host ./data to container /app/data + - ./data:/app/instance + restart: unless-stopped