Compare commits

..

5 Commits

Author SHA1 Message Date
3wc
2da198b21b chore: publish 1.0.2+1.0.19 release
Some checks failed
continuous-integration/drone/push Build is failing
2023-10-05 22:51:28 +01:00
3wc
e90183f153 chore: publish 1.0.1+1.0.18 release
Some checks failed
continuous-integration/drone/push Build is failing
2023-08-22 19:15:13 +02:00
3wc
03cdb435dd Remove HTTP
Some checks failed
continuous-integration/drone/push Build is failing
2023-08-22 19:14:04 +02:00
3wc
33a740929d chore: publish 1.0.0+1.0.18 release
Some checks failed
continuous-integration/drone/push Build is failing
2023-08-22 18:50:50 +02:00
3wc
98ef8f18d3 Add configurable bind-mount option
Some checks failed
continuous-integration/drone/push Build is failing
2023-08-22 18:48:13 +02:00
3 changed files with 15 additions and 5 deletions

View File

@ -7,13 +7,16 @@ LETS_ENCRYPT_ENV=production
COMPOSE_FILE="compose.yml"
# Change to an absolute path to use a bind-mount, e.g. /opt/fedwiki
FEDWIKI_VOLUME="fedwiki"
# custom wiki.cafe image, for working oauth2 support
#COMPOSE_FILE="$COMPOSE_FILE:compose.wikicafe.yml"
# Predefined "owner" security
#COMPOSE_FILE="$COMPOSE_FILE:compose.owner.yml"
# Persistent "lib" volume
# persistent lib volume / node_modules directory, e.g. for plugmatic
#COMPOSE_FILE="$COMPOSE_FILE:compose.lib.yml"
COOKIE_SECRET="asflkjqpweoriuwpeogdjgbpdofigh"

View File

@ -3,11 +3,11 @@ version: "3.8"
services:
app:
image: dobbs/farm:1.0.18
image: dobbs/farm:1.0.19
command: /bin/sh config/install.sh
volumes:
- "fedwiki_friends:/home/node/config"
- "fedwiki:/home/node/.wiki"
- "${FEDWIKI_VOLUME}:/home/node/.wiki"
networks:
- proxy
configs:
@ -32,12 +32,12 @@ services:
- "traefik.http.routers.${STACK_NAME}.tls.domains[0].main=${DOMAIN}"
- "traefik.http.routers.${STACK_NAME}.tls.domains[0].sans=*.${DOMAIN}"
- "traefik.http.routers.${STACK_NAME}.priority=1"
- "caddy=http://${DOMAIN}, http://*.${DOMAIN}, http://*.*.${DOMAIN}, http://*.*.*.${DOMAIN}, https://${DOMAIN}, https://*.${DOMAIN}, https://*.*.${DOMAIN}, https://*.*.*.${DOMAIN}"
- "caddy=https://${DOMAIN}, https://*.${DOMAIN}, https://*.*.${DOMAIN}, https://*.*.*.${DOMAIN}"
- "caddy.reverse_proxy={{upstreams 3000}}"
- "caddy.tls.on_demand="
- "backupbot.backup=true"
- "backupbot.backup.path=/home/node/.wiki"
- "coop-cloud.${STACK_NAME}.version=0.2.10+1.0.18"
- "coop-cloud.${STACK_NAME}.version=1.0.2+1.0.19"
# healthcheck:
# test: ["CMD", "curl", "-f", "http://localhost"]
# interval: 30s

7
release/1.0.0+1.0.18 Normal file
View File

@ -0,0 +1,7 @@
WARNING! 🚨
There is a new mandatory config option, FEDWIKI_VOLUME -- please copy the
default value from the recipe .env.sample to your .env file on upgrade.
If you haven't done that yet, best to bail with Ctrl+C, then add the option,
then re-run this `abra app upgrade ...` command