Add meal tracker app: Flask + SQLite with auth, dashboard, 31 passing tests, Docker Compose
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
services:
|
||||
meal-tracker:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.meal
|
||||
ports:
|
||||
- "5000:5000"
|
||||
volumes:
|
||||
- meal-data:/data
|
||||
environment:
|
||||
- SECRET_KEY=${SECRET_KEY:-change-me-in-production}
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
meal-data:
|
||||
Reference in New Issue
Block a user