rudibridge-mirror/docker-compose.yml

22 lines
346 B
YAML
Raw Normal View History

services:
api:
env_file:
- .env.dev
build:
context: ./api
dockerfile: Dockerfile
ports:
- 8080:8080
volumes:
- ./api:/app
2024-05-12 09:31:51 +00:00
frontend:
env_file:
- .env.dev
build:
context: ./frontend
dockerfile: Dockerfile
ports:
- 5173:5173
volumes:
- ./frontend:/app