Initial OpenBao deployment setup
This commit is contained in:
15
docker-compose.yml
Normal file
15
docker-compose.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
services:
|
||||
openbao:
|
||||
image: ${IMAGE:-ghcr.io/openbao/openbao}:${VERSION:?}
|
||||
container_name: ${NAME:-openbao}
|
||||
command: server
|
||||
ports:
|
||||
- ${ENDPOINT:-127.0.0.1:8200}:${PORT:-8200}
|
||||
environment:
|
||||
BAO_ADDR: http://0.0.0.0:${PORT:-8200}
|
||||
BAO_API_ADDR: http://0.0.0.0:${PORT:-8200}
|
||||
BAO_LOG_LEVEL: ${LOGLEVEL:-info}
|
||||
volumes:
|
||||
- ${DATA:?}:/openbao/file:Z
|
||||
- ${CONFIG:?}:/openbao/config:ro,Z
|
||||
- ${LOGS:?}:/openbao/logs:Z
|
||||
Reference in New Issue
Block a user