-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-deployment.yml
More file actions
47 lines (47 loc) · 1017 Bytes
/
docker-compose-deployment.yml
File metadata and controls
47 lines (47 loc) · 1017 Bytes
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
version: "3"
services:
# the redis session database
redis:
image: redis
container_name: sessiondb
expose:
- 6379
# the arangodb database
arangodb:
image: arangodb/arangodb
container_name: userdb
environment:
- ARANGO_ROOT_PASSWORD=justfortest
expose:
- 8529
volumes:
- ./database/arangodb:/var/lib/arangodb3
- ./database/arangoapps:/var/lib/arangodb3-apps
# jolocom server
jolocom:
container_name: jolocom
build: ./sdk-rpc-interface/packages/server/
volumes:
- ./database/jolocom/data:/data
#ports:
# - '4040:4040'
expose:
- 4040
environment:
DATABASE_DIR: '/data'
AGENT_PASSWORD: 'hunter2'
# condidi backend
condidibackend:
build: ./src/
ports:
- 8080:8080
environment:
- REDIS_HOST=redis
- ARANGO_URL=arangodb:8529
- DEVELOPMENT=False
- PORT=8080
- JOLOCOM_URL=jolocom:4040
depends_on:
- redis
- arangodb
- jolocom