Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(na): add detach to all docker calls #1665

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
Loading