Created
July 18, 2019 20:48
-
-
Save dzervas/8cafbba144096baa53a0c4829a313496 to your computer and use it in GitHub Desktop.
Caddy Docker
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
FROM alpine | |
MAINTAINER Dimitris Zervas <[email protected]> | |
RUN apk add --update --no-cache bash curl gnupg && mkdir /caddy | |
RUN curl https://getcaddy.com | bash -s personal | |
WORKDIR /caddy | |
EXPOSE 80 443 2015 | |
VOLUME [ "/caddy" ] | |
CMD [ "caddy" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment