Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: update bitwarden-cli image & version #2971

Merged
merged 2 commits into from
Jan 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/examples/bitwarden.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ which is synced with the BitWarden server.
* Bitwarden account (it works also with VaultWarden)
* A Kubernetes secret which contains your BitWarden Credentials
* You need a Docker image with BitWarden CLI installed.
You could use `registry.gitlab.com/ttblt-oss/docker-bw:2023.1.0` or build your own.
You could use `ghcr.io/charlesthomas/bitwarden-cli:2023.12.1` or build your own.

Here an example of Dockerfile use to build this image:
```dockerfile
FROM debian:sid

ENV BW_CLI_VERSION=2023.1.0
ENV BW_CLI_VERSION=2023.12.1

RUN apt update && \
apt install -y wget unzip && \
Expand Down