mirror of
https://codeberg.org/Ewen/rudibridge.git
synced 2025-03-28 10:55:58 +00:00
24 lines
399 B
YAML
24 lines
399 B
YAML
services:
|
|
api:
|
|
env_file:
|
|
- .env.dev
|
|
build:
|
|
context: ./api
|
|
dockerfile: Dockerfile
|
|
target: backend-dev
|
|
ports:
|
|
- 8080:8080
|
|
volumes:
|
|
- ./api:/app
|
|
|
|
frontend:
|
|
env_file:
|
|
- .env.dev
|
|
build:
|
|
context: ./frontend
|
|
dockerfile: Dockerfile
|
|
target: frontend-dev
|
|
ports:
|
|
- 5173:5173
|
|
volumes:
|
|
- ./frontend:/app |