27 lines
448 B
YAML
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
|