-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.base.yml
More file actions
46 lines (40 loc) · 1007 Bytes
/
docker-compose.base.yml
File metadata and controls
46 lines (40 loc) · 1007 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
version: "3.8"
services:
connections-db:
image: neo4j
container_name: connections-db
environment:
- NEO4J_AUTH=neo4j/password # Set your username and password
ports:
- "7474:7474" # HTTP port
- "7687:7687" # Bolt port
volumes:
- connections-db-data:/data # Persist data
networks:
- linkedin-network
discovery-server:
image: pallavi771/connectify-app/discovery-server
container_name: discovery-server
networks:
- linkedin-network
ports:
- "8761:8761"
connections-service:
image: pallavi771/connectify-app/connections-service
container_name: connections-service
networks:
- linkedin-network
depends_on:
- discovery-server
- connections-db
api-gateway:
image: pallavi771/connectify-app/api-gateway
container_name: api-gateway
networks:
- linkedin-network
depends_on:
- discovery-server
networks:
linkedin-network:
volumes:
connections-db-data: