From c231a2e389b574f3719ae954fd3a6f80f2616333 Mon Sep 17 00:00:00 2001 From: mrjones <8253488+mrjones-plip@users.noreply.github.com> Date: Tue, 29 Oct 2024 14:30:22 -0700 Subject: [PATCH] add detach to all docker calls --- .../hosting/4.x/production/docker/adding-tls-certificates.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/hosting/4.x/production/docker/adding-tls-certificates.md b/content/en/hosting/4.x/production/docker/adding-tls-certificates.md index 3cd403901..4b1cfeebf 100644 --- a/content/en/hosting/4.x/production/docker/adding-tls-certificates.md +++ b/content/en/hosting/4.x/production/docker/adding-tls-certificates.md @@ -110,7 +110,7 @@ Assuming your CHT instance is **already running with the default self-signed cer 4. Generate certs: ```shell cd /home/ubuntu/cht/certbot - docker compose up + docker compose up --detach ``` 5. Run this command to find the name of your CHT ngnix container: ```shell @@ -122,7 +122,7 @@ Assuming your CHT instance is **already running with the default self-signed cer ``` 7. Attempt to renew your certificates once a week by adding this cronjob via `crontab -e`. Certbot will only renew them as needed: ```shell - 0 0 * * 0 cd /home/ubuntu/cht/certbot&&docker compose up + 0 0 * * 0 cd /home/ubuntu/cht/certbot&&docker compose up --detach ``` ## Troubleshooting