diff --git a/lsio/mastodon/docker-compose.yaml b/lsio/mastodon/docker-compose.yaml index a8dcc2d..98e512e 100644 --- a/lsio/mastodon/docker-compose.yaml +++ b/lsio/mastodon/docker-compose.yaml @@ -35,11 +35,11 @@ services: - ES_ENABLED=false # Browser session secret. Changing it will break all active browser sessions. - SECRET_KEY_BASE= - # MFA secret. Changing it will break two-factor authentication. + # MFA secret. Changing it after initial setup will break two-factor authentication. - OTP_SECRET= - # Push notification private key. Changing it will break push notifications. + # Push notification private key. Changing it after initial setup will break push notifications. - VAPID_PRIVATE_KEY= - # Push notification public key. Changing it will break push notifications. + # Push notification public key. Changing it after initial setup will break push notifications. - VAPID_PUBLIC_KEY= # SMTP server for email notifications - SMTP_SERVER=mail.example.com diff --git a/lsio/mastodon/docker-run.sh b/lsio/mastodon/docker-run.sh index fcb90cb..dd92046 100644 --- a/lsio/mastodon/docker-run.sh +++ b/lsio/mastodon/docker-run.sh @@ -18,9 +18,9 @@ docker run -d \ -e DB_PORT=5432 `# Portgres port` \ -e ES_ENABLED=false `# Enable or disable Elasticsearch (requires a separate ES instance)` \ -e SECRET_KEY_BASE= `# Browser session secret. Changing it will break all active browser sessions.` \ - -e OTP_SECRET= `# MFA secret. Changing it will break two-factor authentication.` \ - -e VAPID_PRIVATE_KEY= `# Push notification private key. Changing it will break push notifications.` \ - -e VAPID_PUBLIC_KEY= `# Push notification public key. Changing it will break push notifications.` \ + -e OTP_SECRET= `# MFA secret. Changing it after initial setup will break two-factor authentication.` \ + -e VAPID_PRIVATE_KEY= `# Push notification private key. Changing it after initial setup will break push notifications.` \ + -e VAPID_PUBLIC_KEY= `# Push notification public key. Changing it after initial setup will break push notifications.` \ -e SMTP_SERVER=mail.example.com `# SMTP server for email notifications` \ -e SMTP_PORT=25 `# SMTP server port` \ -e SMTP_LOGIN= `# SMTP username` \