Jotzy/compose.yaml

44 lines
995 B
YAML
Raw Normal View History

2026-01-06 12:51:40 +00:00
services:
api:
build:
context: ./backend
2026-01-06 13:13:59 +00:00
container_name: fastnotes-api
2026-01-06 16:41:39 +00:00
environment:
- DATABASE_URL=${DATABASE_URL:-sqlite:///./data/notes.db}
- SECRET_KEY=${SECRET_KEY:-change-this-in-production}
- CORS_ORIGINS=${CORS_ORIGINS:-*}
# Internal only - accessed via nginx proxy
expose:
- "8000"
volumes:
- api_data:/app/data
restart: unless-stopped
healthcheck:
test:
[
"CMD",
"python",
"-c",
"import urllib.request; urllib.request.urlopen('http://localhost:8000/health').read()",
]
interval: 30s
timeout: 10s
retries: 3
2026-01-06 12:51:40 +00:00
2026-01-06 16:41:39 +00:00
ui:
build:
context: ./frontend
args:
# Frontend will use /api path (proxied by nginx)
VITE_API_URL: ${VITE_API_URL:-/api}
container_name: fastnotes-ui
ports:
- "80:80"
depends_on:
api:
condition: service_healthy
restart: unless-stopped
volumes:
api_data: