Merge pull request #686 from elgalu/patch-1

README.md duplicated -d on docker run
This commit is contained in:
Tianon Gravi 2016-09-07 11:02:50 -07:00 committed by GitHub
commit f5fffd4ce7
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ Furthermore, ArangoDB offers a microservice framework called [Foxx](https://www.
In order to start an ArangoDB instance run
```console
unix> docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 -d --name arangodb-instance -d arangodb
unix> docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 -d --name arangodb-instance arangodb
```
Will create and launch the arangodb docker instance as background process. The Identifier of the process is printed. By default ArangoDB listen on port 8529 for request and the image includes `EXPOSE 8529`. If you link an application container it is automatically available in the linked container. See the following examples.