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