Files
tout-doux/compose.yml
T
klemek deba8a73f9
TS Lint / Oxlint (push) Successful in 40s
TS Lint / TypeScript (push) Successful in 46s
TS Lint / ESLint (push) Successful in 46s
chore: docker compose dev
2026-06-30 23:20:58 +02:00

28 lines
546 B
YAML

networks:
backend:
services:
app:
image: astral/uv:python3.14-alpine
volumes:
- .:/app
working_dir: /app
environment:
- APP_ENV=dev
- PORT=5000
- BIND=0.0.0.0
command: uv run tout-doux --debug
networks:
- backend
vite:
image: oven/bun:latest
volumes:
- .:/app
working_dir: /app
command: bun run dev
ports:
- "5173:5173"
networks:
- backend