wiki/docs/portainer-stacks/Bitwarden.md
Sthope b2b0f55b62
All checks were successful
continuous-integration/drone/push Build is passing
first commit
2022-05-01 14:01:04 +02:00

22 lines
516 B
Markdown

Portainer Stack:
```yaml
---
version: "3.8"
services:
bitwarden:
image: bitwardenrs/server:${tag-latest}
restart: ${RST-unless-stopped}
container_name: bitwarden
network_mode: ${net-bridge}
volumes:
- /docker/bitwarden:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- 3012:3012
- 80:80
# environment:
# - ADMIN_TOKEN=super_mega_password
labels:
- com.centurylinklabs.watchtower.enable=${AutoUpdate-true}
```