File tree Expand file tree Collapse file tree 4 files changed +98
-3
lines changed Expand file tree Collapse file tree 4 files changed +98
-3
lines changed Original file line number Diff line number Diff line change @@ -19,4 +19,7 @@ MINIO_ROOT_PASSWORD=$DB_PASSWORD
1919MINIO_ACCESS_KEY = $DB_USER
2020MINIO_SECRET_KEY = $DB_PASSWORD
2121AWS_ACCESS_KEY_ID = $DB_USER
22- AWS_SECRET_ACCESS_KEY = $DB_PASSWORD
22+ AWS_SECRET_ACCESS_KEY = $DB_PASSWORD
23+
24+ # ArangoDB
25+ ARANGO_ROOT_PASSWORD = $DB_PASSWORD
Original file line number Diff line number Diff line change @@ -200,6 +200,19 @@ services:
200200 volumes :
201201 - metabase-data:/metabase-data
202202
203+ arangodb :
204+ image : arangodb:3.11.3
205+ restart : always
206+ stop_grace_period : 10s
207+ environment :
208+ ARANGO_ROOT_PASSWORD : $ARANGO_ROOT_PASSWORD
209+ ARANGO_NO_AUTH : 1
210+ ports :
211+ - 8529:8529
212+ volumes :
213+ - arangodb-data:/var/lib/arangodb3
214+ - arangodb-app-data:/var/lib/arangodb3-apps
215+
203216networks :
204217 default :
205218 name : $COMPOSE_PROJECT_NAME
@@ -210,4 +223,6 @@ volumes:
210223 postgres-data : {}
211224 cloudbeaver-data : {}
212225 metabase-data : {}
213- prefect-flows : {}
226+ prefect-flows : {}
227+ arangodb-data : {}
228+ arangodb-app-data : {}
Original file line number Diff line number Diff line change @@ -52,6 +52,8 @@ salib = "^1.5.0"
5252matplotlib = " ^3.9.2"
5353dash-daq = " ^0.5.0"
5454ydata-profiling = " ^4.10.0"
55+ adbnx-adapter = " ^5.0.3"
56+ python-arango = " <8.0"
5557
5658
5759[tool .poetry .group .torch .dependencies ]
You can’t perform that action at this time.
0 commit comments