Files
SpotifyRecAlg/docker-compose.yml
T
Tomas Dvorak efcc157c67 engine
2026-04-21 11:40:27 +02:00

25 lines
438 B
YAML

version: "3.8"
services:
backend:
build:
context: ./apps/backend
dockerfile: Dockerfile
ports:
- "8080:8080"
environment:
- ENV=${ENV:-development}
restart: unless-stopped
frontend:
build:
context: ./apps/web
dockerfile: Dockerfile
ports:
- "3000:3000"
environment:
- API_URL=http://backend:8080
depends_on:
- backend
restart: unless-stopped