Last active
September 8, 2024 07:38
-
-
Save valeriansaliou/62ecee415079465b31500f25a5dfea0c to your computer and use it in GitHub Desktop.
Dockerfile: Certbot with Nomad
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ARG CERTBOT_VERSION=2.11.0 | |
FROM certbot/certbot:v${CERTBOT_VERSION} | |
ARG NOMAD_VERSION=1.5.8-r4 | |
RUN apk add --no-cache nomad=${NOMAD_VERSION} | |
ENTRYPOINT ["certbot"] |
To run a test container locally:
docker run -it --rm --entrypoint /bin/sh [image_id]
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Change build versions: