-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
77 lines (70 loc) · 1.78 KB
/
docker-compose.yml
File metadata and controls
77 lines (70 loc) · 1.78 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
version: '3.8'
services:
chromadb:
image: chromadb/chroma:latest
container_name: chromadb
ports:
- "8000:8000"
volumes:
- ${PWD}/chromadb_storage:/data
chromadb-admin:
image: fengzhichao/chromadb-admin:latest
container_name: chromadb-admin
ports:
- "3000:3000"
environment:
- CHROMADB_URL=http://chromadb:8000
depends_on:
- chromadb
postgres:
image: postgres:13
environment:
POSTGRES_USER: airflow
POSTGRES_PASSWORD: airflow
POSTGRES_DB: airflow
volumes:
- ${PWD}/postgress_storage:/var/lib/postgresql/data
airflow-webserver:
image: apache/airflow:2.6.1
container_name: airflow-webserver
environment:
- AIRFLOW__CORE__EXECUTOR=LocalExecutor
- AIRFLOW__CORE__SQL_ALCHEMY_CONN=postgresql+psycopg2://airflow:airflow@postgres/airflow
- AIRFLOW__CORE__FERNET_KEY=${FERNET_KEY}
- AIRFLOW__WEBSERVER__RBAC=True
ports:
- "8080:8080"
depends_on:
- postgres
command: >
bash -c "airflow db init && airflow webserver"
env_file:
- .env
volumes:
- ${PWD}/dags:/opt/airflow/dags # Mount the dags folder
minio:
image: minio/minio:latest
container_name: minio
environment:
- MINIO_ROOT_USER=minioadmin
- MINIO_ROOT_PASSWORD=minioadmin
- MINIO_DEFAULT_BUCKETS=legal
ports:
- "9000:9000" # API
- "9001:9001" # Console
volumes:
- ${PWD}/data/:/data
command: server /data --console-address ":9001"
neo4j:
image: neo4j:latest
container_name: neo4j
environment:
- NEO4J_AUTH=neo4j/neo4jtest
ports:
- "7474:7474" # Browser
- "7687:7687" # Bolt protocol
volumes:
- ${PWD}/neo4j_data:/data
volumes:
chromadb_data:
postgres_data: