Bitwarden

Bitwarden

Bitwarden is an open-source password manager that securely stores and manages passwords, credit card information, and other sensitive data. It offers cross-platform compatibility, strong encryption, password generation, and secure sharing features, helping users and organizations improve online security and simplify password management.

Bellow is the required docker-compose for the bitwarden repo

version: "3"

services:
  bitwarden:
    image: vaultwarden/server
    container_name: bitwarden
    restart: unless-stopped

    environment:
      - PUID=1000
      - PGID=1000
      - SIGNUPS_ALLOWED=false
      - SIGNUPS_VERIFY=true
    ports:
      - "[port]:80"
    volumes:
      - /home/[user]/docker/bitwarden/data/:/data/

NOTE:
[user] Corresponds to the folder of you user in your system
[port] The desired port you'd like to map the host