-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
94 lines (83 loc) · 1.83 KB
/
Copy pathcompose.yaml
File metadata and controls
94 lines (83 loc) · 1.83 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
84
85
86
87
88
89
90
91
92
93
94
services:
ollama:
image: ${OLLAMA_IMAGE}
container_name: ollama
restart: always
env_file:
- ./env/base.env
ollama-init:
image: ${OLLAMA_IMAGE}
container_name: ollama-init
restart: "no"
env_file:
- ./env/base.env
entrypoint: >
sh -lc 'ollama pull "$${OLLAMA_BOOTSTRAP_MODEL}"'
postgres:
image: ${POSTGRES_IMAGE}
container_name: postgres
restart: always
env_file:
- ./env/base.env
environment:
POSTGRES_DB: ${POSTGRES_DB_N8N}
redis:
image: ${REDIS_IMAGE}
container_name: redis
restart: always
mysql:
image: ${MYSQL_IMAGE}
container_name: mysql
restart: always
env_file:
- ./env/base.env
minio:
image: ${MINIO_IMAGE}
container_name: minio
restart: always
env_file:
- ./env/base.env
command: server /data --console-address ":9001"
couchdb:
image: ${COUCHDB_IMAGE}
container_name: couchdb
restart: always
env_file:
- ./env/base.env
surrealdb:
image: ${SURREALDB_IMAGE}
container_name: surrealdb
restart: always
env_file:
- ./env/base.env
command: start --user ${SURREALDB_USER} --pass ${SURREALDB_PASS} rocksdb:/mydata/mydatabase.db
qdrant:
image: ${QDRANT_IMAGE}
container_name: qdrant
restart: always
volumes:
- qdrant-data:/qdrant/storage
mongodb:
image: ${MONGODB_IMAGE}
container_name: mongodb
restart: always
volumes:
- mongodb-data:/data/db
infinity:
image: ${INFINITY_IMAGE}
container_name: infinity
restart: always
volumes:
- infinity-data:/var/infinity
mercure:
image: ${MERCURE_IMAGE}
container_name: mercure
restart: always
env_file:
- ./env/base.env
ports:
- "${MERCURE_PORT}:80"
volumes:
qdrant-data:
mongodb-data:
infinity-data: