1
0
forked from baron/baron-sso
Files
baron-sso/docker/docker-compose.template.yaml

58 lines
1.4 KiB
YAML

name: baron-sso
services:
backend:
image: ${BACKEND_IMAGE_NAME}:${IMAGE_TAG}
container_name: baron_backend
restart: unless-stopped
env_file:
- .env
environment:
- APP_ENV=${APP_ENV:-production}
- APP_ENV=production
- COOKIE_SECRET=${COOKIE_SECRET}
- DB_HOST=postgres
- CLICKHOUSE_HOST=clickhouse
- CLICKHOUSE_PORT=${CLICKHOUSE_PORT_NATIVE:-9000}
- CLICKHOUSE_USER=${CLICKHOUSE_USER:-baron}
- CLICKHOUSE_PASSWORD=${CLICKHOUSE_PASSWORD:-password}
- FRONTEND_URL=${FRONTEND_URL:-https://sso.hmac.kr}
ports:
- "${BACKEND_PORT:-3010}:3010"
depends_on:
- infra_check
healthcheck:
test: ["CMD", "wget", "-qO-", "http://127.0.0.1:3010/health"]
interval: 10s
timeout: 5s
retries: 3
start_period: 10s
networks:
- baron_net
frontend:
image: ${FRONTEND_IMAGE_NAME}:${IMAGE_TAG}
container_name: baron_frontend
restart: unless-stopped
environment:
- FRONTEND_URL=${FRONTEND_URL:-https://sso.hmac.kr}
- BACKEND_URL=${FRONTEND_URL:-https://sso.hmac.kr}
ports:
- "${FRONTEND_PORT:-80}:80"
depends_on:
backend:
condition: service_healthy
networks:
- baron_net
infra_check:
image: alpine
command: ["echo", "Infrastructure assumed running"]
networks:
- baron_net
networks:
baron_net:
external: true
name: baron_network