Installation

The service can be installed through the Portainer web interface. 

Learn about creating a new stack.

Docker Compose

Use the following code to install the service:

---
services:
  vaultwarden:
    image: vaultwarden/server:latest
    container_name: vaultwarden
    network_mode: bridge
    environment:
      - TZ=America/Vancouver
      - SIGNUPS_ALLOWED=true
    ports:
      - 2546:80
    volumes:
      - /srv/vaultwarden:/data
    restart: unless-stopped

Revision #4
Created 2 March 2025 06:59:27 by metaphorraccoon
Updated 8 March 2025 02:40:26 by metaphorraccoon