From a93358bd6870e52a3e1238516444f6eef5dd96ed Mon Sep 17 00:00:00 2001 From: 3wc <3wc@doesthisthing.work> Date: Mon, 9 Oct 2023 10:46:55 +0100 Subject: [PATCH] chore: publish 2.0.0+1.0.20 release --- compose.yml | 4 ++-- release/2.0.0+1.0.20 | 11 +++++++++++ 2 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 release/2.0.0+1.0.20 diff --git a/compose.yml b/compose.yml index 2776e04..7ac1118 100644 --- a/compose.yml +++ b/compose.yml @@ -3,7 +3,7 @@ version: "3.8" services: app: - image: dobbs/farm:1.0.19 + image: dobbs/farm:1.0.20 command: /bin/sh entrypoint.sh volumes: - "${FEDWIKI_VOLUME}:/home/node/.wiki" @@ -40,7 +40,7 @@ services: - "caddy.tls.on_demand=" - "backupbot.backup=true" - "backupbot.backup.path=/home/node/.wiki" - - "coop-cloud.${STACK_NAME}.version=1.0.2+1.0.19" + - "coop-cloud.${STACK_NAME}.version=2.0.0+1.0.20" healthcheck: test: "node -e 'var http = require(\"http\"); var options = { host : \"localhost\", port : \"3000\", timeout : 2000, path : \"/welcome-visitors.html\" }; var request = http.request(options, (res) => { console.log(`STATUS: $${res.statusCode}`); if (res.statusCode == 200) { process.exit(0); } else { process.exit(1); } }); request.on(\"error\", function(err) { console.log('ERROR'); diff --git a/release/2.0.0+1.0.20 b/release/2.0.0+1.0.20 new file mode 100644 index 0000000..f687d96 --- /dev/null +++ b/release/2.0.0+1.0.20 @@ -0,0 +1,11 @@ +COOKIE_SECRET is now a Docker secret, and several config options have been +dropped from the recipe -- this shouldn't affect running deplyoments, as +the recipe currently just installs the generated `config.json` if there isn't +one already -- but you will likely still need to run +`abra app secret generate ...` before deploying, in preparation for moving to +ennvironment variables for config in a future release. + +Additionally, there is now a healthcheck, which may require tuning, especially +on slower systems; please open a ticket on [the issue +tracker](https://git.coopcloud.tech/coop-cloud/federatedwiki/issues) if you +notice problems with the containers starting up.