vaultwarden/docker-compose.yml hinzugefügt
This commit is contained in:
parent
a6f6489f83
commit
1ea86ac0ff
1 changed files with 20 additions and 0 deletions
20
vaultwarden/docker-compose.yml
Normal file
20
vaultwarden/docker-compose.yml
Normal file
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue