-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
64 lines (64 loc) · 859 Bytes
/
docker-compose.yml
File metadata and controls
64 lines (64 loc) · 859 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
version: "3.8"
services:
node:
build:
context: ./node
ports:
- "2001:2001"
networks:
- backend
volumes:
- server:/usr/src
restart: always
depends_on:
- neo4j
- mongo
python:
build:
context: ./python
ports:
- "3001:3001"
networks:
- backend
volumes:
- server:/usr/src
restart: always
depends_on:
- neo4j
- mongo
- node
neo4j:
image: neo4j:4.3.2-community
ports:
- "7474:7474"
- "7687:7687"
networks:
- backend
volumes:
- neo4j:/data
restart: always
mongo:
image: mongo:5.0.2
ports:
- "27017:27017"
networks:
- backend
volumes:
- mongo:/data/db
restart: always
nginx:
image: nginx:1.21
ports:
- "8080:80"
networks:
- backend
volumes:
- nginx:/etc/nginx
restart: always
networks:
backend: {}
volumes:
mongo:
neo4j:
server:
nginx: