chore: layout changes
This commit is contained in:
parent
54d2a8d890
commit
840549ba70
1 changed files with 13 additions and 5 deletions
|
@ -4,17 +4,25 @@ services:
|
||||||
image: vaultwarden/server:latest
|
image: vaultwarden/server:latest
|
||||||
container_name: vaultwarden
|
container_name: vaultwarden
|
||||||
environment:
|
environment:
|
||||||
SIGNUPS_ALLOWED: 'false' # set to false to disable signups
|
TZ: 'Europe/Berlin'
|
||||||
INVITATIONS_ALLOWED: 'false' # set to false to disable invitations
|
|
||||||
ADMIN_TOKEN: 'TOKEN'
|
|
||||||
DOMAIN: 'https:///domain.tld'
|
DOMAIN: 'https:///domain.tld'
|
||||||
|
# Disable signups
|
||||||
|
SIGNUPS_ALLOWED: 'false'
|
||||||
|
# Disable invitations
|
||||||
|
INVITATIONS_ALLOWED: 'false'
|
||||||
|
# Enable admin page and create token via a temporary container
|
||||||
|
# docker run --rm -it vaultwarden/server /vaultwarden hash
|
||||||
|
ADMIN_TOKEN: 'TOKEN'
|
||||||
# Cache time-to-live for successfully obtained icons, in seconds (0 is "forever")
|
# Cache time-to-live for successfully obtained icons, in seconds (0 is "forever")
|
||||||
ICON_CACHE_TTL: 0
|
ICON_CACHE_TTL: 0
|
||||||
ICON_SERVICE: 'internal'
|
ICON_SERVICE: 'internal'
|
||||||
DISABLE_ICON_DOWNLOAD: 'true'
|
DISABLE_ICON_DOWNLOAD: 'true'
|
||||||
# LOG_LEVEL: 'debug'
|
# Set log settings for fail2ban
|
||||||
|
LOG_LEVEL: 'info'
|
||||||
|
EXTENDED_LOGGING: 'true'
|
||||||
|
LOG_FILE: '/data/vaultwarden.log'
|
||||||
volumes:
|
volumes:
|
||||||
- ./volumes/data:/data
|
- ./volumes/data:/data
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:11080:80"
|
- "127.0.0.1:8081:80"
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue