From ba887b177f1d1918a16a3d1729e8767dc5272b51 Mon Sep 17 00:00:00 2001 From: Sven Thiel <55701246+sventhiel@users.noreply.github.com> Date: Thu, 21 Aug 2025 11:06:37 +0200 Subject: [PATCH] Update docker.md --- content/docs/self-hosting/docker.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/content/docs/self-hosting/docker.md b/content/docs/self-hosting/docker.md index d5c9b2f..6824fda 100644 --- a/content/docs/self-hosting/docker.md +++ b/content/docs/self-hosting/docker.md @@ -44,7 +44,10 @@ On Linux: ```bash docker run --rm -it -p 5200:8080 -p 5089:443 \ - -e EX_ConnectionStrings__Email=smtps://user:password@smtp.host.com:587 \ + -e EX_ConnectionStrings__Email=[smtp | smtps]://user:password@smtp.host.com:587 \ + -e EX_AppMode="[Development | Staging | Production]" \ + -e EX_BaseURL="[http | https]://example.com" \ + -e EX_SmtpFrom="John Doe " \ -e ASPNETCORE_URLS="https://+;http://+" \ -e ASPNETCORE_HTTPS_PORT=5001 \ -e ASPNETCORE_Kestrel__Certificates__Default__Password="password" \ @@ -58,7 +61,10 @@ On PowerShell: ```powershell docker run --rm -it -p 5200:8080 -p 5089:443 ` - -e EX_ConnectionStrings__Email=smtps://user:password@smtp.host.com:587 ` + -e EX_ConnectionStrings__Email=[smtp | smtps]://user:password@smtp.host.com:587 \ + -e EX_AppMode="[Development | Staging | Production]" ` + -e EX_BaseURL="[http | https]://example.com" ` + -e EX_SmtpFrom="John Doe " ` -e ASPNETCORE_URLS="https://+;http://+" ` -e ASPNETCORE_HTTPS_PORT=5001 ` -e ASPNETCORE_Kestrel__Certificates__Default__Password="password" `