I am new to vault. I am currently attempting to set up a key vault in dev mode on my Linux system using Docker Compose.
I have successfully run the docker-compose command and initialized the vault using the vault init operator
command. However, I encountered an error message below when attempting to authenticate into the UI.
Ember Data Request GET /vt/sys/auth returned a 403 Payload (apolication/son) Tabied Obiect permission denied
Here is my docker-compose file
version: '2'
services:
vault:
image: vault:1.13.3
container_name: vault
ports:
- "8200:8200"
restart: always
volumes:
- ./volumes/logs:/logs
- ./volumes/file:/file
- ./volumes/config:/config
cap_add:
- IPC_LOCK
entrypoint: vault server -config=/config/vault.json
Here is my vault configuration file
{
"backend": {
"file": {
"path": "/vault/file"
}
},
"listener": {
"tcp":{
"address": "0.0.0.0:8200",
"tls_disable": 1
}
},
"ui": true
}
I will be grateful for your help