Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enabling experimental naming conventions #105

Closed
DizzyDeveloper opened this issue Mar 18, 2022 · 2 comments
Closed

Enabling experimental naming conventions #105

DizzyDeveloper opened this issue Mar 18, 2022 · 2 comments
Labels

Comments

@DizzyDeveloper
Copy link

Hi,

I was wander if it is possible to enable the extended-names-databases feature?

Is there a way to enable it via an environment variable or a parameter of sorts? Or would I have to create a derived image with that flag set myself?

@dothebart
Copy link
Contributor

Hi,
ArangoDB configuration variables translate to CLI arguments. Hence starting the docker container with

--database.extended-names-databases true

would be similar to

[database]
extended-names-databases = true

@DizzyDeveloper
Copy link
Author

@dothebart Legend thanks mate! Got it to work :)

For those who come across this later, or for a summary for myself for when I inevitably forget. Usage as follows:

docker:

docker run --name arangodb-experimental -d -p 8529:8529 -e ARANGO_ROOT_PASSWORD=1 arangodb:latest --database.extended-names-databases true

docker-compose:

version: '3.9'
services:
  arangodb-experimental:
    image: arangodb:latest
    command: --database.extended-names-databases true    
    ports:
      - "8529:8529"
    environment:
      - ARANGO_ROOT_PASSWORD=1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants