Compare commits

...

8 Commits

Author SHA1 Message Date
Bortseb c4d128d0b4 chore: update image tags
continuous-integration/drone/push Build is failing
2026-06-05 17:11:55 +00:00
Bortseb 7e28140631 chore: publish 3.3.0+0.41.0-rc.0-1 release
continuous-integration/drone/tag Build is passing
continuous-integration/drone/push Build is failing
2026-05-27 05:32:09 +00:00
Bortseb f066de9f84 chore: update image tags 2026-05-27 04:50:04 +00:00
Bortseb eef4018af6 chore: publish 3.2.0+0.40.1-1 release
continuous-integration/drone/tag Build is passing
continuous-integration/drone/push Build is failing
2026-05-19 14:38:52 +00:00
Bortseb 63b204e2d2 chore: update image tags 2026-05-19 14:28:02 +00:00
Bortseb 5b0693901e chore: publish 3.1.4+0.39.4-1 release
continuous-integration/drone/tag Build is passing
continuous-integration/drone/push Build is failing
2026-05-19 02:23:49 +00:00
Bortseb 5e84041083 Bring back health check 2026-05-19 02:22:41 +00:00
Bortseb b55198813c Update .env.sample
continuous-integration/drone/push Build is failing
Make adding HTTP access easier to copy and paste.
2026-04-10 03:22:53 +00:00
2 changed files with 10 additions and 12 deletions
+2 -2
View File
@@ -25,8 +25,8 @@ CONFIG_FILE="config.json"
## If using Caddy:
## Customize your Caddyfile to determine what domains are accessible and will get TLS certificates.
## You are also able to enable access over HTTP by adding domains like: http://${DOMAIN}, http://*.${DOMAIN}, http://*.*.${DOMAIN}
CADDY=https://${DOMAIN}, https://*.${DOMAIN}, https://*.*.${DOMAIN}, https://*.*.*.${DOMAIN}
## You are also able to enable access over HTTP by adding domains like: http://${DOMAIN}, http://*.${DOMAIN}, http://*.*.${DOMAIN}, http://*.*.*.${DOMAIN}
CADDY="https://${DOMAIN}, https://*.${DOMAIN}, https://*.*.${DOMAIN}, https://*.*.*.${DOMAIN}"
## If using Traefik:
## By default traefik allows: https://${DOMAIN}, https://*.${DOMAIN}, https://*.*.${DOMAIN}, https://*.*.*.${DOMAIN}
+8 -10
View File
@@ -3,7 +3,7 @@ version: "3.8"
services:
app:
image: git.coopcloud.tech/wiki-cafe/fedwiki-oci-image:0.39.4-1
image: git.coopcloud.tech/wiki-cafe/fedwiki-oci-image:0.41.0-rc.0-2
command: /bin/sh entrypoint.sh
volumes:
- "${FEDWIKI_VOLUME}:/home/node/.wiki"
@@ -40,15 +40,13 @@ services:
- "caddy.tls.on_demand="
- "backupbot.backup=true"
- "backupbot.backup.path=/home/node/.wiki"
- "coop-cloud.${STACK_NAME}.version=3.1.3+0.39.4-1"
# healthcheck:
# test: "node -e 'var http = require(\"http\"); var options = { host : \"localhost\", port : \"3000\", timeout : 2000, path : \"/view/welcome-visitors\", headers: { \"Host\": \"${DOMAIN}\" } }; 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');
# process.exit(1); }); request.end();'"
# interval: 10s
# timeout: 2s
# retries: 2
# start_period: 30s
- "coop-cloud.${STACK_NAME}.version=3.3.0+0.41.0-rc.0-1"
healthcheck:
test: "node -e 'var http = require(\"http\"); var options = { host : \"localhost\", port : \"3000\", timeout : 2000, path : \"/view/welcome-visitors\", headers: { \"Host\": \"${DOMAIN}\" } }; 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'); process.exit(1); }); request.end();'"
interval: 10s
timeout: 2s
retries: 2
start_period: 30s
volumes:
fedwiki: