23 lines
524 B
YAML
23 lines
524 B
YAML
# Development Docker Compose override
|
|
# Use: docker-compose -f docker-compose.yml -f docker-compose.dev.yml up
|
|
|
|
version: '3.8'
|
|
|
|
services:
|
|
frontend:
|
|
build:
|
|
context: ./frontend
|
|
target: development
|
|
volumes:
|
|
- ./frontend/src:/app/src
|
|
- ./frontend/index.html:/app/index.html
|
|
command: npm run dev
|
|
environment:
|
|
VITE_API_URL: http://localhost:8055
|
|
VITE_WS_URL: ws://localhost:3001
|
|
|
|
control-service:
|
|
volumes:
|
|
- ./control-service/src:/app/src
|
|
command: npm run dev
|