Files
ldap-identidy/docker-compose.yml
Bastian Wagner 3e5348b7ec initial
2026-07-15 14:09:28 +02:00

21 lines
331 B
YAML

services:
api:
build:
context: .
dockerfile: apps/api/Dockerfile
env_file:
- .env
ports:
- "3000:3000"
web:
build:
context: .
dockerfile: apps/web/Dockerfile
environment:
API_BASE_URL: http://localhost:3000
ports:
- "4200:80"
depends_on:
- api