-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathevault.docker-compose.yml
More file actions
56 lines (52 loc) · 1.18 KB
/
evault.docker-compose.yml
File metadata and controls
56 lines (52 loc) · 1.18 KB
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
version: '3.8'
services:
evault:
build:
context: .
dockerfile: ./docker/Dockerfile.evault
ports:
- "4000:4000"
environment:
- NEO4J_URI=${NEO4J_URI}
- NEO4J_USER=${NEO4J_USER}
- NEO4J_PASSWORD=${NEO4J_PASSWORD}
- SECRETS_STORE_PATH=/app/secrets/secrets.json
- ENCRYPTION_PASSWORD=${ENCRYPTION_PASSWORD}
- W3ID=${W3ID}
volumes:
- secrets:/app/secrets
networks:
- graphnet
depends_on:
- neo4j
develop:
watch:
- action: sync+restart
path: ./infrastructure/evault-core/
target: /app/infrastructure/evault-core
ignore:
- node_modules
- action: rebuild
path: ./infrastructure/evault-core/package.json
- action: rebuild
path: ./.env
neo4j:
image: neo4j:5.15
container_name: evault-neo4j
ports:
- "7474:7474" # HTTP
- "7687:7687" # Bolt
environment:
- NEO4J_AUTH=${NEO4J_USER}/${NEO4J_PASSWORD}
volumes:
- neo4j_data:/data
- neo4j_logs:/log
networks:
- graphnet
volumes:
neo4j_data:
neo4j_logs:
secrets:
networks:
graphnet:
driver: bridge