vps/vw/docker-compose.yaml

15 lines
408 B
YAML
Raw Normal View History

2023-11-22 08:26:10 +01:00
services:
vaultwarden:
2023-12-06 08:37:17 +01:00
image: vaultwarden/server:alpine
2023-11-22 08:26:10 +01:00
container_name: vaultwarden
restart: always
2023-12-05 17:45:59 +01:00
user: '1000:1000'
2023-11-22 08:26:10 +01:00
environment:
- DOMAIN=https://vw.viyurz.fr # Your domain; vaultwarden needs to know it's https to work properly with attachments
- SIGNUPS_ALLOWED=false
- INVITATIONS_ALLOWED=false
ports:
- 8081:80
2023-11-22 08:26:10 +01:00
volumes:
- /mnt/vwdata:/data