Skip to content

Commit

Permalink
fix(#9243): remove unneeded options when installing certificate in do…
Browse files Browse the repository at this point in the history
…cker helper (#9244)
  • Loading branch information
m5r authored Jul 4, 2024
1 parent 53d1b21 commit 5a881f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/docker-helper-4.x/cht-docker-compose.sh
Original file line number Diff line number Diff line change
Expand Up @@ -458,9 +458,9 @@ while [[ "$running" != "true" ]]; do
running=$(is_nginx_running "$nginxContainerId")
done

docker exec -it "$nginxContainerId" bash -c "curl -s -o /etc/nginx/private/cert.pem https://local-ip.medicmobile.org/fullchain" 2>/dev/null
docker exec -it "$nginxContainerId" bash -c "curl -s -o /etc/nginx/private/key.pem https://local-ip.medicmobile.org/key" 2>/dev/null
docker exec -it "$nginxContainerId" bash -c "nginx -s reload" 2>/dev/null
docker exec "$nginxContainerId" bash -c "curl -s -o /etc/nginx/private/cert.pem https://local-ip.medicmobile.org/fullchain" 2>/dev/null
docker exec "$nginxContainerId" bash -c "curl -s -o /etc/nginx/private/key.pem https://local-ip.medicmobile.org/key" 2>/dev/null
docker exec "$nginxContainerId" bash -c "nginx -s reload" 2>/dev/null

echo ""
echo ""
Expand Down

0 comments on commit 5a881f6

Please sign in to comment.