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
ports:
- 2546:80
volumes:
- /srv/vaultwarden:/data
restart: unless-stopped