Vaultwarden
The recipe manager that allows you to manage your ever growing collection of digital recipes.
Getting Started
- Create a folder and move to the folder
mkdir vaultwarden && cd vaultwarden
- Create a
docker-compose.yml
file and add the following content:docker-compose.ymlservices: 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:
- Start the service using docker compose.
docker compose up -d
- Go to http://localhost:9020 to access Vaultwarden.