cara/app-config/docker-compose.yml

29 lines
528 B
YAML
Raw Normal View History

version: "3.8"
services:
cara-app:
image: cara-voila-app
cara-webservice:
image: cara-webservice
auth-service:
image: auth-service
environment:
- COOKIE_SECRET
- OIDC_SERVER
- OIDC_REALM
- CLIENT_ID
- CLIENT_SECRET
cara-router:
image: cara-nginx-app
ports:
- "8080:8080"
depends_on:
cara-webservice:
condition: service_started
cara-app:
condition: service_started
auth-service:
condition: service_started