16 lines
374 B
YAML
16 lines
374 B
YAML
# version: '3'
|
|
|
|
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
# image: homedocs:latest
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- ./instance:/app/instance # Persist SQLite database
|
|
environment:
|
|
- FLASK_ENV=${FLASK_ENV:-production}
|
|
- SECRET_KEY=${SECRET_KEY:-} # Will be generated if empty
|
|
restart: unless-stopped
|