Created
February 9, 2016 16:39
-
-
Save lorentzca/392ad739940dd89b5e96 to your computer and use it in GitHub Desktop.
run vault server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| backend "file" { | |
| path = "/dev/vault" | |
| } | |
| listener "tcp" { | |
| address = "0.0.0.0:8200" | |
| tls_disable = 1 | |
| } | |
| disable_mlock = true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| vault: | |
| build: . | |
| command: 'bash -c ''/usr/local/bin/vault server -config=/root/config.hcl''' | |
| ports: | |
| - '8200:8200' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM lorentzca/vault_on_centos7 | |
| COPY ./config.hcl /root/config.hcl |
Author
lorentzca
commented
Feb 9, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment