wetalk/docker-compose.dev.yml
2026-04-13 11:20:47 +02:00

27 lines
448 B
YAML

services:
app:
build:
context: .
dockerfile: Dockerfile.dev
ports:
- "5173:5173"
volumes:
- .:/app
- /app/node_modules
env_file:
- .env
environment:
- CHOKIDAR_USEPOLLING=true
api:
image: oven/bun:1
working_dir: /app
ports:
- "3001:3001"
volumes:
- ./api:/app
- /app/node_modules
env_file:
- ./api/.env
command: bun run src/index.ts