You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So, i have a Dockerfile wrapper along base Arangodb container.
I have copy simple .js file into "docker-entrypoint-initdb.d" dir. But after arango start there's no any effects.
I tryd to make some post-init actions ON DOCKER-COMPOSE!
Data of my js file:
db._createDatabase("TestDB");
Dockerfile data:
FROM arangodb:3.6
# For health_check
RUN apk add curl
COPY MyProj/Docker/Arangodb/db_init.js /docker-entrypoint-initdb.d/init.js
The text was updated successfully, but these errors were encountered:
Hi there.
So, i have a Dockerfile wrapper along base Arangodb container.
I have copy simple .js file into "docker-entrypoint-initdb.d" dir. But after arango start there's no any effects.
I tryd to make some post-init actions ON DOCKER-COMPOSE!
Data of my js file:
Dockerfile data:
The text was updated successfully, but these errors were encountered: