-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yaml
42 lines (41 loc) · 1.04 KB
/
docker-compose.yaml
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
version: "3.8"
services:
apply-classic-page:
build:
context: ./custom-universal-login
dockerfile: Dockerfile
env_file: .env
update-settings:
build:
context: ./orchestrator
dockerfile: Dockerfile
env_file: .env
volumes:
- ./product-a-regular-web-app:/app/envs/product-a
- ./product-b-regular-web-app:/app/envs/product-b
- ./product-c-single-page-app:/app/envs/product-c
- ./django-api:/app/envs/django-api
django-api:
build:
context: django-api
env_file: django-api/.env.development
ports:
- "8010:8010"
product-a:
build:
context: product-a-regular-web-app
env_file: product-a-regular-web-app/.env.development
ports:
- "8000:8000"
product-b:
build:
context: product-b-regular-web-app
env_file: product-b-regular-web-app/.env.development
ports:
- "8001:8001"
product-c:
build:
context: product-c-single-page-app
env_file: product-c-single-page-app/.env.development
ports:
- "8002:8002"