docker-compose/vaultwarden/docker-compose.yml
2024-05-08 23:01:18 +02:00

20 lines
639 B
YAML

---
services:
vaultwarden:
image: vaultwarden/server:latest
container_name: vaultwarden
environment:
SIGNUPS_ALLOWED: 'false' # set to false to disable signups
INVITATIONS_ALLOWED: 'false' # set to false to disable invitations
ADMIN_TOKEN: 'TOKEN'
DOMAIN: 'https:///domain.tld'
# Cache time-to-live for successfully obtained icons, in seconds (0 is "forever")
ICON_CACHE_TTL: 0
ICON_SERVICE: 'internal'
DISABLE_ICON_DOWNLOAD: 'true'
# LOG_LEVEL: 'debug'
volumes:
- ./volumes/data:/data
ports:
- "127.0.0.1:11080:80"
restart: unless-stopped