Skip to content

Commit

Permalink
version 2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cpontvieux-systra committed Jan 4, 2021
1 parent c197d0f commit b0f70e9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
CHANGELOG
=========

version 2.3.1
-------------
- Let’s encrypt companion update

version 2.3.0
-------------
- Security updates (docker images)
Expand Down
2 changes: 1 addition & 1 deletion capp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ from yaml import (

from verify_dca import verify_checksum

__version__ = (2, 3, 0)
__version__ = (2, 3, 1)


def printflush(*args, **kwargs):
Expand Down
2 changes: 1 addition & 1 deletion dca/dca_keys_entrypoint
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Match User dca
AuthorizedKeysCommandUser dca
EOF
cat >> /usr/local/bin/get_dca_keys <<'EOF'
#!/bin/sh
#!/bin/bash
if [ "$1" = "dca" ]; then
for f in /etc/capp/users/*; do
u=$(basename "$f")
Expand Down
2 changes: 1 addition & 1 deletion get_deploy_keys
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
if [ "$1" = "deploy" ]; then
for f in /etc/capp/users/*; do
u=$(basename "$f")
Expand Down
4 changes: 3 additions & 1 deletion proxy/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ services:
- /var/docker-volumes/nginx-proxy/certs:/etc/nginx/certs:ro
- nginx-conf:/etc/nginx/conf.d:rw
letsencrypt:
image: jrcs/letsencrypt-nginx-proxy-companion:v1.13.1
image: jrcs/letsencrypt-nginx-proxy-companion:2.0.2
container_name: le-gen
environment:
- "NGINX_PROXY_CONTAINER=nginx-proxy"
Expand All @@ -37,6 +37,7 @@ services:
- "network"
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- acme:/etc/acme.sh:rw
- nginx-conf:/etc/nginx/conf.d:rw
- nginx-html:/usr/share/nginx/html:rw
- /var/docker-volumes/nginx-proxy/vhost.d:/etc/nginx/vhost.d:rw
Expand All @@ -46,3 +47,4 @@ networks:
volumes:
"nginx-conf":
"nginx-html":
"acme":

0 comments on commit b0f70e9

Please sign in to comment.