This commit is contained in:
decentral1se 2022-08-27 16:38:24 +02:00
commit 3cc0ce6e91
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
4 changed files with 62 additions and 0 deletions

4
.env.sample Normal file
View File

@ -0,0 +1,4 @@
TYPE=gancio
DOMAIN={{ .Domain }}
LETS_ENCRYPT_ENV=production

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.envrc

24
README.md Normal file
View File

@ -0,0 +1,24 @@
# gancio
> A shared agenda for local communities.
<!-- metadata -->
* **Category**: Apps
* **Status**: 0
* **Image**: [`gancio`](https://hub.docker.com/cisti/gancio), 4, upstream
* **Healthcheck**: No
* **Backups**: No
* **Email**: No
* **Tests**: No
* **SSO**: No
<!-- endmetadata -->
## Quick start
* `abra app new gancio`
* `abra app config <app-name>`
* `abra app deploy <app-name>`
For more, see [`docs.coopcloud.tech`](https://docs.coopcloud.tech).

33
compose.yml Normal file
View File

@ -0,0 +1,33 @@
---
version: "3.8"
services:
app:
image: cisti/gancio:latest
networks:
- proxy
environment:
- PATH=$PATH:/home/node/.yarn/bin
- GANCIO_DATA=/home/node/data
- NODE_ENV=production
- GANCIO_DB_DIALECT=sqlite
- GANCIO_DB_STORAGE=./gancio.sqlite
volumes:
- gancio_data:/home/node/data
deploy:
restart_policy:
condition: on-failure
labels:
- "traefik.enable=true"
- "traefik.http.services.${STACK_NAME}.loadbalancer.server.port=13120"
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)"
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- "coop-cloud.${STACK_NAME}.version=0.1.0+latest"
volumes:
gancio_data:
networks:
proxy:
external: true