KeePassXC

KeePassXC is a free and open-source password manager. It started as a community fork of KeePassX (itself a cross-platform port of KeePass).

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: "3.9"
services:
  keepassxc:
    image: lscr.io/linuxserver/keepassxc:latest
    container_name: keepassxc
    security_opt:
      - seccomp:unconfined #optional
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    volumes:
      - ./config:/config
    ports:
      - 3000:3000
      - 3001:3001
    restart: unless-stopped

Resources

Website: https://keepassxc.org/

Github: https://github.com/keepassxreboot/keepassxc

Docker Hub (LinuxServer.io⁠): https://hub.docker.com/r/linuxserver/keepassxc

Configuration: https://github.com/linuxserver/docker-keepassxc