diff --git a/changelog.md b/changelog.md index 27b3e808d..b60d47eab 100644 --- a/changelog.md +++ b/changelog.md @@ -1,7 +1,9 @@ -[v0.53.2](https://github.com/nextcloud/nextcloudpi/commit/5608921) (2018-03-17) letsencrypt: remove .well-known dir after renewal +[v0.53.3](https://github.com/nextcloud/nextcloudpi/commit/ad4686d) (2018-03-17) docker: fix development container script folder -[v0.53.1](https://github.com/nextcloud/nextcloudpi/commit/d8ad80c) (2018-03-17) fix web update to NC13.0.1 with .well-known existence +[v0.53.2 ](https://github.com/nextcloud/nextcloudpi/commit/96fa0f5) (2018-03-17) letsencrypt: remove .well-known dir after renewal + +[v0.53.1 ](https://github.com/nextcloud/nextcloudpi/commit/d8ad80c) (2018-03-17) fix web update to NC13.0.1 with .well-known existence [v0.53.0 ](https://github.com/nextcloud/nextcloudpi/commit/cf6c432) (2018-03-17) update to NC 13.0.1 diff --git a/docker-compose-ncpdev.yml b/docker-compose-ncpdev.yml index 798335b46..58dc00de3 100644 --- a/docker-compose-ncpdev.yml +++ b/docker-compose-ncpdev.yml @@ -9,6 +9,8 @@ services: - "4443:4443" volumes: - ./ncp-web:/var/www/ncp-web + - ./etc:/usr/local/etc + - ./changelog.md:/changelog.md - ncdata:/data volumes: diff --git a/etc/library.sh b/etc/library.sh index 7e3137015..a08d6fd4d 100644 --- a/etc/library.sh +++ b/etc/library.sh @@ -177,6 +177,7 @@ function persistent_cfg() { local SRC="$1" local DST="${2:-/data/etc/$( basename "$SRC" )}" + test -e /changelog.md && return # trick to disable in dev docker mkdir -p "$( dirname "$DST" )" test -d "$DST" || { echo "Making $SRC persistent ..."