-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.prod.deploy.yml
More file actions
36 lines (31 loc) · 1.87 KB
/
docker-compose.prod.deploy.yml
File metadata and controls
36 lines (31 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Sub-10b — Production strict-env override.
# Overlays docker-compose.prod.yml; strips fallback defaults so that
# missing required env-vars hard-fail at compose-up time. Used by
# deploy.ps1 in production. NOT used by direct `compose up` callers
# or the CI smoke target — those rely on the relaxed defaults in the
# base file.
#
# Compose merges environment maps key-by-key. Setting a key to the
# empty-default form ${VAR:?} causes compose to error if VAR is unset
# OR empty.
services:
migrator:
image: ghcr.io/${CCE_REGISTRY_OWNER:?CCE_REGISTRY_OWNER must be set}/cce-migrator:${CCE_IMAGE_TAG:?CCE_IMAGE_TAG must be set}
api-external:
image: ghcr.io/${CCE_REGISTRY_OWNER:?CCE_REGISTRY_OWNER must be set}/cce-api-external:${CCE_IMAGE_TAG:?CCE_IMAGE_TAG must be set}
environment:
Keycloak__Authority: ${KEYCLOAK_AUTHORITY:?KEYCLOAK_AUTHORITY must be set}
Keycloak__Audience: ${KEYCLOAK_AUDIENCE:?KEYCLOAK_AUDIENCE must be set}
Infrastructure__SqlConnectionString: ${INFRA_SQL:?INFRA_SQL must be set}
Infrastructure__RedisConnectionString: ${INFRA_REDIS:?INFRA_REDIS must be set}
api-internal:
image: ghcr.io/${CCE_REGISTRY_OWNER:?CCE_REGISTRY_OWNER must be set}/cce-api-internal:${CCE_IMAGE_TAG:?CCE_IMAGE_TAG must be set}
environment:
Keycloak__Authority: ${KEYCLOAK_AUTHORITY:?KEYCLOAK_AUTHORITY must be set}
Keycloak__Audience: ${KEYCLOAK_AUDIENCE:?KEYCLOAK_AUDIENCE must be set}
Infrastructure__SqlConnectionString: ${INFRA_SQL:?INFRA_SQL must be set}
Infrastructure__RedisConnectionString: ${INFRA_REDIS:?INFRA_REDIS must be set}
web-portal:
image: ghcr.io/${CCE_REGISTRY_OWNER:?CCE_REGISTRY_OWNER must be set}/cce-web-portal:${CCE_IMAGE_TAG:?CCE_IMAGE_TAG must be set}
admin-cms:
image: ghcr.io/${CCE_REGISTRY_OWNER:?CCE_REGISTRY_OWNER must be set}/cce-admin-cms:${CCE_IMAGE_TAG:?CCE_IMAGE_TAG must be set}