Hello,
I am installing the neo4j:4.3.0-enterprise Docker image from Docker
I use
docker run -d \
--name neo4j-core-01 \
--env=NEO4J_ACCEPT_LICENSE_AGREEMENT=yes \
--network neo4j-core-01-network \
--publish 172.18.0.1:7474:7474 \
--publish 172.18.0.1:7687:7687 \
--mount source=neo4j-core-01-volume,target=/data \
neo4j:4.3.0-enterprise
The container is up, but I dont figure out where to enter the license key in order to continue my cluster setup.
I reviewd the entrypoint file in docker-neo4j-publish/docker-entrypoint.sh at 4e1de71ba0017d996c292730663fd40d14d3e983 · neo4j/docker-neo4j-publish · GitHub but did no see any ENV variable in order to achieve that.
Would you help me to find out where to enter my licese key?