You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
331 B
YAML

---
version: '1.0'
services:
shortener_frontend:
container_name: shortener_frontend
build:
context: ./react-frontend
dockerfile: Dockerfile
ports: [3003:4173]
shortener_backend:
container_name: shortener_backend
build:
context: ./elysia
dockerfile: Dockerfile
ports: [3004:3000]