bitwarden-cli in a node:alpine image
531
Bitwarden-cli inside a alpine docker image.
Example ZSH function for aliasing bw to docker image:
#!/usr/local/bin/zsh
# Run Bitwarden CLI commands using Docker
# Bitwarden volume contains basic connection information,
# without this you would need to enter email everytime.
function bw() {
docker run --rm -it \
-v /tmp:/tmp \
-v bitwarden:/root/.config/ \
frealmyr/bitwarden-cli-docker:latest bw $argv
}
Content type
Image
Digest
Size
52.4 MB
Last updated
almost 6 years ago
docker pull frealmyr/bitwarden-cli-docker