Padloc

A modern, open source password manager for individuals and teams.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: "3.7"
services:
    server:
        image: padloc/server
        environment:
            PL_DATA_BACKEND: leveldb
            PL_DATA_LEVELDB_DIR: /data
            PL_DATA_ATTACHMENTS_BACKEND: fs
            PL_DATA_ATTACHMENTS_DIR: /attachments
            PL_SERVER_CLIENT_URL: http://localhost:8080
            PL_EMAIL_BACKEND: console
        ports:
            - 3000:3000
        volumes:
            - ./attachments:/attachments
            - ./data:/data
        restart: unless-stopped
    pwa:
        image: padloc/pwa
        environment:
            PL_SERVER_URL: http://localhost:3000
            PL_PWA_URL: http://localhost:8080
        ports:
            - 8080:8080
        restart: on-failure

Resources

Website: https://padloc.app/

Docs: https://docs.padloc.app/

GitHub: https://github.com/padloc/padloc

Docker Hub: https://hub.docker.com/r/padloc/server

Configuration: https://github.com/padloc/padloc/tree/main/docs/examples/hosting/docker