diff --git a/vaultwarden/docker-compose.yml b/vaultwarden/docker-compose.yml new file mode 100644 index 0000000..c163aba --- /dev/null +++ b/vaultwarden/docker-compose.yml @@ -0,0 +1,20 @@ +version: '3' +services: + vaultwarden: + image: vaultwarden/server:latest + container_name: vaultwarden + ports: + - "127.0.0.1:11080:80" + volumes: + - ./volumes/data:/data + 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' + restart: unless-stopped \ No newline at end of file