chore: publish 2.0.0+1.0.20 release
continuous-integration/drone/push Build is failing Details

This commit is contained in:
3wc 2023-10-09 10:46:55 +01:00
parent 3a0d30da6a
commit a93358bd68
2 changed files with 13 additions and 2 deletions

View File

@ -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');

11
release/2.0.0+1.0.20 Normal file
View File

@ -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.