-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
46 lines (44 loc) · 1.04 KB
/
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
39
40
41
42
43
44
45
46
version: '3'
services:
reverse-proxy:
networks:
- ring
ports:
- 8080:80
build:
context: ./reverse-proxy
volumes:
- ./reverse-proxy/conf/includes:/etc/nginx/includes
- ./reverse-proxy/html:/etc/static/public
depends_on:
- frontend
extra_hosts:
- host.docker.internal:host-gateway
frontend:
image: microlc/micro-lc:${MICRO_LC_VERSION:-latest}
hostname: fe-container
networks:
- ring
composer:
hostname: composer
networks:
- ring
image: microlc/micro-lc-element-composer:${ELEMENT_COMPOSER_VERSION:-latest}
environment:
- HTTP_PORT=8080
back-kit:
hostname: back-kit
networks:
- ring
image: microlc/bk-web-components:${BACK_KIT_VERSION:-unstable}
environment:
- HTTP_PORT=8080
notification-center:
hostname: notification-center
networks:
- ring
image: microlc/micro-lc-notification-center:${NOTIFICATION_CENTER_VERSION:-latest}
environment:
- HTTP_PORT=8080
networks:
ring: