-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for claiming existing certificate + Store certificate in Volume
* Adds a new required "certificate name" parameter (backward compatible): When there is an existing certificate by that name it will be overwritten with a renewed certificate * fullchain.pem and privatekey.pem are now stored in a Volume under /etc/letsencrypt/production/certificates/. This is until we find a better way to share the private key with other services.
- Loading branch information
Jan Broer
committed
Mar 31, 2016
1 parent
46f12b3
commit 2a91bcf
Showing
12 changed files
with
252 additions
and
164 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,9 +3,10 @@ MAINTAINER Jan Broer <[email protected]> | |
|
||
RUN apk add --no-cache ca-certificates | ||
|
||
ENV LETSENCRYPT_RELEASE v0.2.5 | ||
ENV LETSENCRYPT_RELEASE v0.2.6 | ||
|
||
ADD https://github.com/janeczku/rancher-letsencrypt/releases/download/${LETSENCRYPT_RELEASE}/rancher-letsencrypt-linux-amd64.tar.gz /tmp/rancher-letsencrypt.tar.gz | ||
|
||
RUN tar -zxvf /tmp/rancher-letsencrypt.tar.gz -C /usr/bin \ | ||
&& chmod +x /usr/bin/rancher-letsencrypt | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,11 @@ MAINTAINER Jan Broer <[email protected]> | |
RUN apk add --no-cache ca-certificates | ||
|
||
ADD build/rancher-letsencrypt-linux-amd64 /usr/bin/rancher-letsencrypt | ||
|
||
RUN chmod +x /usr/bin/rancher-letsencrypt | ||
|
||
VOLUME /etc/letsencrypt | ||
|
||
ENV DEBUG=true | ||
|
||
ENTRYPOINT ["/usr/bin/rancher-letsencrypt"] |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v0.2.5 | ||
v0.2.6 |
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
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
Oops, something went wrong.