"Operation not Permitted" when running Vault in a container

8.2k Views Asked by At

We are running the vault-cli in an Alpine Docker image within our GitLab CI. After an upgrade we are getting this when Vault is called:

/bin/bash: line 117: /usr/sbin/vault: Operation not permitted

Felix

1

There are 1 best solutions below

0
On BEST ANSWER

According to this issue, add this to your Dockerfile:

apk add --no-cache vault libcap
setcap cap_ipc_lock= /usr/sbin/vault

Note though that this is only secure when not using vault as server here.