this post was submitted on 20 Jul 2024
13 points (100.0% liked)

Docker

1080 readers
1 users here now

founded 1 year ago
MODERATORS
 

I am working on this django docker project template with this certbot setup, Dockerfile

FROM certbot/certbot:v1.27.0

COPY certify-init.sh /opt/
RUN chmod +x /opt/certify-init.sh

ENTRYPOINT ["/opt/certify-init.sh"]

entrypoint

#!/bin/sh

set -e

echo "Getting certificate..."

certbot certonly \
    --webroot \
    --webroot-path "/vol/www/" \
    -d "$DOMAIN" \
    --email $EMAIL \
    --rsa-key-size 4096 \
    --agree-tos \
    --noninteractive

if [ $? -ne 0 ]; then
    echo "Certbot encountered an error. Exiting."
    exit 1
fi

#for copying the certificate and configuration to the volume
if [ -f "/etc/letsencrypt/live/${DOMAIN}/fullchain.pem" ]; then
    echo "SSL cert exists, enabling HTTPS..."
    envsubst '${DOMAIN}' < /etc/nginx/nginx.prod.conf > /etc/nginx/conf.d/default.conf
    echo "Reloading Nginx configuration..."
    nginx -s reload
else
    echo "Certbot unable to get SSL cert,server HTTP only..."
fi


echo "Setting up auto-renewal..."
apk add --no-cache dcron
echo "0 12 * * * /usr/bin/certbot renew --quiet" | crontab -
crond -b

problem with this setup is,certbot exits after initial run of getting the certificate and when it's renew time it require manual intervention.

Now There are two choices

  1. set restart: unless-stopped in docker compose file so it keeps restarting the container and with cron job to renew the certificate when required.

  2. Set cron job in host machine to restart the container.

Are there any other/more option to tackle this situation.

top 10 comments
sorted by: hot top controversial new old
[–] anzo@programming.dev 5 points 2 months ago (2 children)

I have heard great things for Traefik because it integrates nicely with containers. Which webserver are you using, is there Nginx on top of Gunicorn? I'd google if youe webserver has integrations to certbot... Perhaps you need to approach from a different perspective

[–] PlusMinus@lemmy.world 2 points 2 months ago

I second this, it is easy to set up Traefik as a reverse proxy with automatic certificate renewal.

[–] alexdeathway@programming.dev 1 points 2 months ago

is there Nginx on top of Gunicorn?

you are right.

[–] Perhyte@lemmy.world 3 points 2 months ago* (last edited 2 months ago) (2 children)

The -b in crond -b means to run it as a daemon (in the background), though it appears that is also the default (source). This means the script will continue, but since that's the last line it exits. With the entrypoint stopped, the container also stops.

The fix should be to replace that line with exec crond -f so the crond process runs in the foreground and becomes the main process running in the container, replacing the entrypoint script. crond -f without exec should also work, but that needlessly keeps an extra process (the shell running the entrypoint script) alive.

[–] alexdeathway@programming.dev 1 points 2 months ago

guess this will get the job done.

[–] alexdeathway@programming.dev 1 points 1 month ago

crond -f without exec should also work, but that needlessly keeps an extra process (the shell running the entrypoint script) alive.

with exec it throws

setpgid: operation not permitted

Due to permission issues with the Docker user group, will avoid using exec as it introduces a potential security risk, which isn't a sensible trade-off just to keep a process running in the background.

[–] Semi_Hemi_Demigod@lemmy.world 2 points 2 months ago (1 children)

Just curious: What manual intervention do you need to do when renewing? That might point to a possible root cause for why it's not working

[–] alexdeathway@programming.dev 2 points 2 months ago (1 children)
[–] Semi_Hemi_Demigod@lemmy.world 2 points 2 months ago

Anything in the cron logs? Maybe you could try sending the output of the cron job to a log file to see where it gets hung up.

[–] rglullis@communick.news 2 points 2 months ago

Traefik or Caddy will do certificate management automatically for you and both of them work amazingly well as a proxy for a gunicorn server.