rudibridge-mirror/docker-compose.yml
2024-05-12 11:31:51 +02:00

22 lines
346 B
YAML

services:
api:
env_file:
- .env.dev
build:
context: ./api
dockerfile: Dockerfile
ports:
- 8080:8080
volumes:
- ./api:/app
frontend:
env_file:
- .env.dev
build:
context: ./frontend
dockerfile: Dockerfile
ports:
- 5173:5173
volumes:
- ./frontend:/app