Fixed indentation
This commit is contained in:
parent
8a013093e3
commit
90c8bf639c
@ -6,7 +6,7 @@ x-logging:
|
||||
# https://www.loggly.com/use-cases/docker-syslog-logging-and-troubleshooting/
|
||||
tag: "container_name/{{.Name}}"
|
||||
labels: "${hostname}"
|
||||
syslog-facility: # cron, local7, etc.
|
||||
syslog-facility: # cron, local7, etc.
|
||||
|
||||
# Can be removed if not needed
|
||||
x-opt-values:
|
||||
@ -21,22 +21,22 @@ services:
|
||||
container_name: vaultwarden
|
||||
restart: always
|
||||
environment:
|
||||
ADMIN_TOKEN: ${TOKEN} # Set token if you want the admin page available
|
||||
ADMIN_TOKEN: ${TOKEN} # Set token if you want the admin page available
|
||||
ROCKET_PORT: ${EXPOSED_PORT}
|
||||
VIRTUAL_PORT: ${EXPOSED_PORT} # Used by nginx-proxy
|
||||
VIRTUAL_HOST: ${NDOMAIN} # Used by nginx-proxy
|
||||
VIRTUAL_PORT: ${EXPOSED_PORT} # Used by nginx-proxy
|
||||
VIRTUAL_HOST: ${NDOMAIN} # Used by nginx-proxy
|
||||
LETSENCRYPT_HOST: ${NDOMAIN}
|
||||
DOMAIN: ${VDOMAIN} # Used by vaultwarden to set certain links
|
||||
DOMAIN: ${VDOMAIN} # Used by vaultwarden to set certain links
|
||||
WEBSOCKET_ENABLED: "true"
|
||||
SIGNUPS_ALLOWED: "false" # Change to true if it's the first time running
|
||||
SIGNUPS_ALLOWED: "false" # Change to true if it's the first time running
|
||||
# Optional environment, but useful if you want some functions
|
||||
SMTP_HOST: "${protonmail-container-name}"
|
||||
SMTP_FROM: ${SFROM}
|
||||
SMTP_FROM_NAME: ${SFROMNAME}
|
||||
SMTP_PORT: "25" # Default SMTP port for Protonmail Bridge
|
||||
SMTP_PORT: "25" # Default SMTP port for Protonmail Bridge
|
||||
SMTP_USERNAME: ${SUSER}
|
||||
SMTP_PASSWORD: ${SPASS}
|
||||
SMTP_ACCEPT_INVALID_CERTS: "true" # Necessary when using Protonmail Bridge
|
||||
SMTP_ACCEPT_INVALID_CERTS: "true" # Necessary when using Protonmail Bridge
|
||||
volumes:
|
||||
- vw-data:/data
|
||||
networks:
|
||||
@ -44,17 +44,17 @@ services:
|
||||
- vaultwarden
|
||||
- protonmail
|
||||
|
||||
vaultwarden-backup:
|
||||
image: bruceforce/vaultwarden-backup
|
||||
container_name: vaultwarden-backup
|
||||
restart: always
|
||||
environment:
|
||||
TIMESTAMP: "true"
|
||||
UID: ${UID}
|
||||
GID: ${GID}
|
||||
BACKUP_DIR: ${BACKUP_DIR}
|
||||
DELETE_AFTER: "30"
|
||||
CRON_TIME: "0 2 * * *"
|
||||
vaultwarden-backup:
|
||||
image: bruceforce/vaultwarden-backup
|
||||
container_name: vaultwarden-backup
|
||||
restart: always
|
||||
environment:
|
||||
TIMESTAMP: "true"
|
||||
UID: ${UID}
|
||||
GID: ${GID}
|
||||
BACKUP_DIR: ${BACKUP_DIR}
|
||||
DELETE_AFTER: "30"
|
||||
CRON_TIME: "0 2 * * *"
|
||||
volumes:
|
||||
- vw-data:/data
|
||||
- backup:/backup
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user