Docker Compose uses environment variables to customize container configurations. These variables can be defined in multiple ways to support different deployment scenarios.
tell the other mail servers what to do when email is flagged as SPAM
TXT
prod._domainkey
"v=DKIM1; k=rsa; p=PUBLIC_KEY_AS_BASE_64"
Public RSA key, generated from step 4
6.2 Update your reverse proxy
If you have a reverse proxy in front of your atomic blend server (for example, on a home network where only a single local device can receive inbound requests), you'll need to configure the following in your proxy:
Missing files that need to be downloaded:
- .env.example → /root/atomic-blend-backend/docker/.env
Repository: atomic-blend/backend
Branch: main
Enter 'y' or 'yes' to download missing files: y
Checking for latest versions...
IMAGE CURRENT LATEST STATUS
---------------------------------------- --------------- --------------- ----------
auth latest 0.12.0 OUTDATED
mail-server latest 0.3.0 OUTDATED
mail latest 0.3.0 OUTDATED
productivity latest 0.12.1 OUTDATED
task-app latest 0.13.1 OUTDATED
notes-app latest 0.4.1 OUTDATED
mail-app latest 0.3.0 OUTDATED
Summary:
==========
Add these to your .env.versions file:
AUTH_SERVICE_VERSION=0.12.0
MAIL_SERVER_SERVICE_VERSION=0.3.0
MAIL_SERVICE_VERSION=0.3.0
PRODUCTIVITY_SERVICE_VERSION=0.12.1
TASK_APP_VERSION=0.13.1
NOTES_APP_VERSION=0.4.1
MAIL_APP_VERSION=0.3.0
Would you like to automatically update the .env file with these new versions?
Enter 'y' or 'yes' to proceed: y
Would you like to configure atomic-blend settings?
Enter 'y' or 'yes' to proceed:
Environment Configuration
=========================
SSO_SECRET is empty or missing. Generating a new one...
Updated SSO_SECRET with newly generated value
Public Domain Configuration
============================
PUBLIC_ADDRESS and ACCOUNT_DOMAINS define where your service will be accessible.
Current value: atomic-blend.com
Example: app.example.com
Would you like to update the public domain? (y/n): y
Enter public domain: brandonguigo.com
Updated PUBLIC_ADDRESS to brandonguigo.com
Added ACCOUNT_DOMAINS="brandonguigo.com"
User Account Limit Configuration
==================================
AUTH_MAX_NB_USER defines the maximum number of user accounts allowed.
Current value: 10
Would you like to update the maximum number of users? (y/n): n
Skipped AUTH_MAX_NB_USER configuration.
Script completed successfully!
# generate the private key for DKIM
openssl genrsa -out private.key 2048
# export the public key to set inside your DNS
openssl ec -in private.key -pubout -outform der | openssl base64 -A