Files
tout-doux/compose.yml
T
klemek c93a74b0f4
Python Lint CI / ty (push) Successful in 1m22s
Python Lint CI / ruff (push) Successful in 1m22s
Python Lint CI / ruff-format-check (push) Successful in 1m22s
feat: database with tortoise orm
2026-07-01 11:43:10 +02:00

61 lines
1.4 KiB
YAML

networks:
backend:
volumes:
postgres-data:
services:
app:
image: astral/uv:python3.14-alpine
volumes:
- .:/app
working_dir: /app
environment:
- APP_ENV=dev
- PORT=5000
- BIND=0.0.0.0
- DB_URL=postgres://tout-doux:tout-doux@postgres:5432/tout-doux
command: uv run tout-doux --debug
networks:
- backend
depends_on:
postgres:
condition: service_healthy
vite:
image: oven/bun:latest
volumes:
- .:/app
working_dir: /app
command: bun run dev
ports:
- "5173:5173"
networks:
- backend
postgres:
image: postgres:17
healthcheck:
test:
[
"CMD-SHELL",
"pg_isready",
"-d",
"tout-doux",
"-U",
"tout-doux",
]
interval: 10s
timeout: 60s
retries: 3
start_period: 60s
environment:
- POSTGRES_DB=tout-doux
- POSTGRES_USER=tout-doux
- POSTGRES_PASSWORD=tout-doux
- PGDATA=/var/lib/postgresql/data/pgdata
volumes:
- "postgres-data:/var/lib/postgresql/data"
networks:
- backend