Skip to content

Commit

Permalink
Adding ArangoDB dep
Browse files Browse the repository at this point in the history
  • Loading branch information
JBris committed Sep 9, 2024
1 parent e865b89 commit 1fc4937
Show file tree
Hide file tree
Showing 4 changed files with 98 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,7 @@ MINIO_ROOT_PASSWORD=$DB_PASSWORD
MINIO_ACCESS_KEY=$DB_USER
MINIO_SECRET_KEY=$DB_PASSWORD
AWS_ACCESS_KEY_ID=$DB_USER
AWS_SECRET_ACCESS_KEY=$DB_PASSWORD
AWS_SECRET_ACCESS_KEY=$DB_PASSWORD

# ArangoDB
ARANGO_ROOT_PASSWORD=$DB_PASSWORD
17 changes: 16 additions & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,19 @@ services:
volumes:
- metabase-data:/metabase-data

arangodb:
image: arangodb:3.11.3
restart: always
stop_grace_period: 10s
environment:
ARANGO_ROOT_PASSWORD: $ARANGO_ROOT_PASSWORD
ARANGO_NO_AUTH: 1
ports:
- 8529:8529
volumes:
- arangodb-data:/var/lib/arangodb3
- arangodb-app-data:/var/lib/arangodb3-apps

networks:
default:
name: $COMPOSE_PROJECT_NAME
Expand All @@ -210,4 +223,6 @@ volumes:
postgres-data: {}
cloudbeaver-data: {}
metabase-data: {}
prefect-flows: {}
prefect-flows: {}
arangodb-data: {}
arangodb-app-data: {}
77 changes: 76 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ salib = "^1.5.0"
matplotlib = "^3.9.2"
dash-daq = "^0.5.0"
ydata-profiling = "^4.10.0"
adbnx-adapter = "^5.0.3"
python-arango = "<8.0"


[tool.poetry.group.torch.dependencies]
Expand Down

0 comments on commit 1fc4937

Please sign in to comment.