Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 588 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 588 Bytes

bws-docker

The latest Bitwarden Secrets Manager CLI in a Docker container. Includes an API server.

Instructions

Interactive CLI

Run docker build -t bws:latest .

Then, docker run --rm bws:latest help

Serve API

Create a local API instance:

docker-compose.yml

---
version: '3.8'
services:
  secrets_api:
    container_name: secrets_api
    image: secrets_api
    build:
      context: .
      dockerfile: Dockerfile.api
    ports:
      - 5000:5000

Disclaimer

This is not an official Bitwarden product. It comes with no warranty. Use at your own risk.