-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
38 lines (34 loc) · 956 Bytes
/
docker-compose.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
version: '3'
services:
ui-proxy:
build: ./ui-proxy
image: fi/ui-proxy
container_name: ui-proxy
links:
- layout-service
- home-ui
- mail-ui
ports:
- "80:80"
layout-service:
build: ./layout-service
image: fi/layout-service
container_name: layout-service
volumes:
- ./layout-service/static/:/static/
#environment:
# - VIRTUAL_HOST=layout-service.local.dev
home-ui:
build: ./home-ui
image: fi/home-ui
container_name: home-ui
volumes:
- ./home-ui/:/usr/share/nginx/html/
#environment:
# - VIRTUAL_HOST=home-ui.local.dev
mail-ui:
build: ./mail-ui
image: fi/mail-ui
container_name: mail-ui
#environment:
# - VIRTUAL_HOST=mail-ui.local.dev