-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
83 lines (76 loc) · 1.71 KB
/
docker-compose.yaml
File metadata and controls
83 lines (76 loc) · 1.71 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
version: '3.8'
services:
postgres:
image: postgres:latest
container_name: postgres
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: mysecretpassword
POSTGRES_DB: momentum
ports:
- "5432:5432"
networks:
- app-network
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U postgres" ]
interval: 10s
timeout: 5s
retries: 5
pgadmin:
image: dpage/pgadmin4:latest
container_name: pgadmin
restart: always
environment:
PGADMIN_DEFAULT_EMAIL: support@momentum.sh
PGADMIN_DEFAULT_PASSWORD: password
ports:
- 8080:80
networks:
- app-network
neo4j:
image: neo4j:latest
container_name: neo4j
environment:
NEO4J_AUTH: neo4j/mysecretpassword
ports:
- "7474:7474"
- "7687:7687"
networks:
- app-network
mongodb:
image: mongo
container_name: mongodb
restart: always
environment:
- MONGO_INITDB_DATABASE=momentum
ports:
- "27017:27017"
networks:
- app-network
redis:
image: redis:latest
container_name: redis_broker
ports:
- "6379:6379"
networks:
- app-network
weaviate:
image: cr.weaviate.io/semitechnologies/weaviate:1.25.7
container_name: weaviate
command: "--host 0.0.0.0 --port 8082 --scheme http"
ports:
- 8082:8082
- 50051:50051
restart: on-failure
environment:
QUERY_DEFAULTS_LIMIT: 25
AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: "true"
PERSISTENCE_DATA_PATH: "/var/lib/weaviate"
DEFAULT_VECTORIZER_MODULE: "none"
ENABLE_MODULES: ""
CLUSTER_HOSTNAME: "node1"
networks:
- app-network
networks:
app-network:
driver: bridge