Add cap-add for IPC_LOCK to dev example as well

This commit is contained in:
Jeff Mitchell 2016-12-16 17:39:20 -05:00
parent cf4b5fca51
commit 671a40535d
1 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@ The container has a Vault configuration directory set up at `/vault/config` and
## Running Vault for Development
```console
$ docker run -d --name=dev-vault vault
$ docker run --cap-add=IPC_LOCK -d --name=dev-vault vault
```
This runs a completely in-memory Vault server, which is useful for development but should not be used in production.
@ -39,7 +39,7 @@ When running in development mode, two additional options can be set via environm
As an example:
```console
$ docker run -e 'VAULT_DEV_ROOT_TOKEN_ID=myroot' -e 'VAULT_DEV_LISTEN_ADDRESS=127.0.0.1:1234' vault
$ docker run --cap-add=IPC_LOCK -e 'VAULT_DEV_ROOT_TOKEN_ID=myroot' -e 'VAULT_DEV_LISTEN_ADDRESS=127.0.0.1:1234' vault
```
## Running Vault in Server Mode