diff --git a/README.md b/README.md index 66a8a84..98ff6fb 100644 --- a/README.md +++ b/README.md @@ -35,20 +35,17 @@ directly accessible. The port 7474 is untouched. ## docker-compose usage example ```yaml -neo4j: - image: hausgold/neo4j - environment: - # Mind the .local suffix - - MDNS_HOSTNAME=neo4j.test.local - # We allow to start an SSH server inside the container to enable the - # programmatically access to neo4j tooling. This is disabled by default. - - SSHD_ENABLE=false - - SSHD_ROOT_PASSWORD=root - - SSHD_CUSTOM_CONIFG=false - ports: - # The ports are just for you to know when configure your - # container links, on depended containers - - "7474" +services: + neo4j: + image: hausgold/neo4j + environment: + # Mind the .local suffix + MDNS_HOSTNAME: neo4j.test.local + # We allow to start an SSH server inside the container to enable the + # programmatically access to neo4j tooling. This is disabled by default. + SSHD_ENABLE: 'false' + SSHD_ROOT_PASSWORD: root + SSHD_CUSTOM_CONIFG: 'false' ``` ## Host configs