Update docker-compose.yaml

This commit is contained in:
2025-08-11 02:05:33 +02:00
parent 6ecec986b7
commit 1c31b431e4

View File

@@ -1,9 +1,9 @@
version: "3.9"
services: services:
app: app:
build: . build: .
container_name: my_python_sqlite_app container_name: cal_counter
ports: ports:
- "5000:80" # change if needed - "5000:80"
volumes: volumes:
- ./data:/app/instance # maps host ./data to container /app/data - ./data:/app/instance
restart: unless-stopped