-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathdocker-compose-external-db.yml
49 lines (43 loc) · 1.21 KB
/
docker-compose-external-db.yml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
version: "3.9"
services:
bakery-gateway:
container_name: gateway
depends_on:
- "bakery-front"
- "workbench-front"
- "bakery-back"
image: cruibakeryonprem.azurecr.io/cloud/gateway:latest
restart: always
env_file: .env
ports:
- "${UI_BAKERY_PORT:-3030}:3030"
bakery-front:
container_name: bakery-front
image: cruibakeryonprem.azurecr.io/cloud/bakery-front:latest
restart: always
env_file: .env
workbench-front:
container_name: workbench-front
image: cruibakeryonprem.azurecr.io/cloud/workbench-front:latest
restart: always
env_file: .env
datasource:
container_name: datasource
image: cruibakeryonprem.azurecr.io/cloud/datasource:latest
restart: always
env_file: .env
bakery-back:
container_name: bakery-back
image: cruibakeryonprem.azurecr.io/cloud/bakery-back:latest
restart: always
env_file: .env
automation:
container_name: automation
image: cruibakeryonprem.azurecr.io/cloud/automation:latest
restart: always
env_file: .env
python-runtime:
container_name: python-runtime
image: cruibakeryonprem.azurecr.io/cloud/python-runtime:latest
restart: always
env_file: .env