-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.dev.yaml
44 lines (36 loc) · 1.06 KB
/
docker-compose.dev.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
43
version: '2.4'
networks:
bridge-net:
external: true
services:
api:
ports:
- "${GOHAN_API_EXTERNAL_PORT}:${GOHAN_API_INTERNAL_PORT}"
extends:
file: docker-compose.yaml
service: api
elasticsearch:
ports:
- ${GOHAN_ES_EXTERNAL_PORT_1}:${GOHAN_ES_INTERNAL_PORT_1}
- ${GOHAN_ES_EXTERNAL_PORT_2}:${GOHAN_ES_INTERNAL_PORT_2}
extends:
file: docker-compose.yaml
service: elasticsearch
kibana:
ports:
- ${GOHAN_KB_EXTERNAL_PORT}:${GOHAN_KB_INTERNAL_PORT}
extends:
file: docker-compose.yaml
service: kibana
drs:
ports:
- "${GOHAN_DRS_EXTERNAL_PORT}:${GOHAN_DRS_INTERNAL_PORT}"
extends:
file: docker-compose.yaml
service: drs
authorization:
ports:
- "${GOHAN_AUTHZ_OPA_EXTERNAL_PORT}:${GOHAN_AUTHZ_OPA_INTERNAL_PORT}"
extends:
file: docker-compose.yaml
service: authorization