15 lines
308 B
YAML
15 lines
308 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}
|
|
restart: unless-stopped
|