arangodb-docker
arangodb-docker copied to clipboard
Docker container for ArangoDB
This contains several security updates in alpine's `busybox` toolkit. Build tested and working locally. Release notes: https://www.alpinelinux.org/posts/Alpine-3.19.1-released.html Please let me know if you have any requested changes or additional questions....
/usr/sbin/arango-init-database failed with invalid value for '--rocksdb.max-background-jobs') = 95
version: docker exec arango arangosh --version | head -2 3.10.3 reproduce: ``` cat /tmp/arangod.conf [database] directory = /var/lib/arangodb3 [server] endpoint = tcp://0.0.0.0:8529 storage-engine = auto authentication = true statistics =...
From the docs, setting ARANGO_NO_AUTH to 1 is meant to disable auth, so the corrolary of setting it to 0 not disabling auth is implied. This is not the case...
When extending the ArangoDB docker image as a base image to dockerize a Foxx service (or anything else really) it's extremely useful to be able to just stuff `/docker-entrypoint-initdb.d` full...
I've been using ArangoDB for a couple years but am only starting to do stuff with Docker in the last month or so. I recall early on that I found...
The folder permissions for `/var/lib/arangodb3 /var/lib/arangodb3*` are not being properly set to `775` as mentioned in the Dockerfile: ``` echo chgrp -R 0 /var/lib/arangodb3 /var/lib/arangodb3-apps && \ echo chmod -R...
Signals are not handled in entrypoint, hence the container is always killed by docker after grace period. You realize it, when you configure a longer grace period, than the default...
Hi, I want to use arangoDb inside a docker-compose file. The problem I get is that I didn't find any env variable that gives the possibility to create a new...