-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdocker-compose.yml
74 lines (73 loc) · 1.67 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
---
version: "3.2"
# docker commit optisam-backend_db_1 optisam/auth-service-postgres
services:
db:
image: dockerfactory.repos.tech.orange/postgres
restart: always
ports:
- "5432:5432"
environment:
- POSTGRES_DB=optisam
- POSTGRES_USER=optisam
- POSTGRES_PASSWORD=optisam
optisam-auth-service:
image: optisam-it-virt-docker-unstable.${ARTIFACTORY_INFRA}/optisam/auth-service
restart: always
ports:
- "9093:9093"
depends_on:
- db
# optisam-account-service:
# image: dockerfactory-unstable-iva.si.francetelecom.fr/optisam/account-service
# restart: always
# ports:
# - "9091:9091"
# depends_on:
# - db
optisam-license-service:
image: optisam-it-virt-docker-unstable.${ARTIFACTORY_INFRA}/optisam/license-service
restart: always
ports:
- "8092:8091"
depends_on:
- server
zero:
image: dgraph/dgraph:latest
volumes:
- type: volume
source: dgraph
target: /dgraph
volume:
nocopy: true
ports:
- 5080:5080
- 6080:6080
restart: on-failure
command: dgraph zero --my=zero:5080
server:
image: dgraph/dgraph:latest
volumes:
- type: volume
source: dgraph
target: /dgraph
volume:
nocopy: true
ports:
- 8080:8080
- 9080:9080
restart: on-failure
command: dgraph alpha --my=server:7080 --lru_mb=2048 --zero=zero:5080
ratel:
image: dgraph/dgraph:latest
volumes:
- type: volume
source: dgraph
target: /dgraph
volume:
nocopy: true
ports:
- 8000:8000
command: dgraph-ratel
volumes:
dgraph: