* navigate to the app at `https://<app-name>` and fill out the configuration setup. Then click `Next` at the bottom. At this point, the page should display a default username `admin` and password `<password>` while constantly refreshing and failing. Save the contents of `<password>`
This will default to latest which can be unstable because we do not know which exact version will be deployed. We generally have a convention of pinning the version and then using abra recipe ... commands to make releases:
Do you have a specific version you want to upgrade to?
This will default to `latest` which can be unstable because we do not know which exact version will be deployed. We generally have a convention of pinning the version and then using `abra recipe ...` commands to make releases:
* https://docs.coopcloud.tech/maintainers/handbook/#upstream-released-a-new-version-how-do-i-upgrade-the-recipe
* https://docs.coopcloud.tech/maintainers/handbook/#how-do-i-release-a-new-recipe-version
Do you have a specific version you want to upgrade to?
We usually allow the possibility to turn it off also:
- "backupbot.backup=${ENABLE_BACKUPS:-true}"
See other recipes for conventions around the backupbot labels.
We usually allow the possibility to turn it off also:
> `- "backupbot.backup=${ENABLE_BACKUPS:-true}"`
See other recipes for conventions around the `backupbot` labels.
You need to add `EXTRA_DOMAINS` configuration to https://git.coopcloud.tech/coop-cloud/gancio/src/branch/main/.env.sample then also? See other recipes for what you can copy/paste .
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Add backup-bot-two to the app.
Change README to reflect starting gancio.
Thanks for taking a run at this @jjsfunhouse!
@@ -21,2 +21,4 @@* `abra app config <app-name>`* `abra app deploy <app-name>`* navigate to the app at `https://<app-name>` and fill out the configuration setup. Then click `Next` at the bottom. At this point, the page should display a default username `admin` and password `<password>` while constantly refreshing and failing. Save the contents of `<password>`* `abra app refresh <app-name> app`Did you mean another command
abra app refreshdoesn't exist?You're totally right, mixed up
refreshandrestart@@ -4,3 +4,3 @@services:app:image: cisti/gancio:1.25.1image: cisti/gancioThis will default to
latestwhich can be unstable because we do not know which exact version will be deployed. We generally have a convention of pinning the version and then usingabra recipe ...commands to make releases:Do you have a specific version you want to upgrade to?
Pinned it to the current latest version!
@@ -18,2 +18,4 @@condition: on-failuremax_attempts: 10labels:- "backupbot.backup=true"We usually allow the possibility to turn it off also:
See other recipes for conventions around the
backupbotlabels.@@ -21,2 +24,3 @@- "traefik.docker.network=proxy"- "traefik.http.services.${STACK_NAME}.loadbalancer.server.port=13120"- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)"- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`${EXTRA_DOMAINS})"You need to add
EXTRA_DOMAINSconfiguration to https://git.coopcloud.tech/coop-cloud/gancio/src/branch/main/.env.sample then also? See other recipes for what you can copy/paste .Updated the .env to reflect the compose and fixed the README
One minor comment, thanks!
Fine to merge from my side then 💟
@@ -2,2 +3,4 @@DOMAIN=gancio.example.com## Domain aliases#EXTRA_DOMAINS=', `www.nextcloud.example.com`'www.gancio.example.com?Made that final change, thanks for looking this over!