Vaultwarden logo

Vaultwarden

The recipe manager that allows you to manage your ever growing collection of digital recipes.

Getting Started

  1. Create a folder and move to the folder
    mkdir vaultwarden && cd vaultwarden
    
  2. Create a docker-compose.yml file and add the following content:
    docker-compose.yml
    services:
      vaultwarden:
        image: vaultwarden/server:latest
        container_name: vaultwarden
        restart: unless-stopped
        environment:
          DOMAIN: "http://localhost:9020"
        volumes:
          - vw-data:/data/
        ports:
          - 9020:80
    volumes:
      vw-data:
    
  3. Start the service using docker compose.
    docker compose up -d
    
  4. Go to http://localhost:9020 to access Vaultwarden.