Skip to content

Commit 1fc4937

Browse files
committed
Adding ArangoDB dep
1 parent e865b89 commit 1fc4937

File tree

4 files changed

+98
-3
lines changed

4 files changed

+98
-3
lines changed

Diff for: .env

+4-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,7 @@ MINIO_ROOT_PASSWORD=$DB_PASSWORD
1919
MINIO_ACCESS_KEY=$DB_USER
2020
MINIO_SECRET_KEY=$DB_PASSWORD
2121
AWS_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

Diff for: docker-compose.yaml

+16-1
Original file line numberDiff line numberDiff 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+
203216
networks:
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: {}

Diff for: poetry.lock

+76-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: pyproject.toml

+2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ salib = "^1.5.0"
5252
matplotlib = "^3.9.2"
5353
dash-daq = "^0.5.0"
5454
ydata-profiling = "^4.10.0"
55+
adbnx-adapter = "^5.0.3"
56+
python-arango = "<8.0"
5557

5658

5759
[tool.poetry.group.torch.dependencies]

0 commit comments

Comments
 (0)