mirror of
https://github.com/StefBuwalda/cal_counter.git
synced 2025-10-30 03:10:00 +00:00
10 lines
216 B
YAML
10 lines
216 B
YAML
version: "3.9"
|
|
services:
|
|
app:
|
|
build: .
|
|
container_name: my_python_sqlite_app
|
|
ports:
|
|
- "80:5000" # change if needed
|
|
volumes:
|
|
- ./data:/app/data # maps host ./data to container /app/data
|