This commit is contained in:
decentral1se 2022-08-24 00:24:57 +02:00
commit c119c0a89a
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
4 changed files with 55 additions and 0 deletions

4
.env.sample Normal file
View File

@ -0,0 +1,4 @@
TYPE=mycorrhiza
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 @@
# mycorrhiza
> A lightweight file-system wiki engine that uses Git for keeping history
<!-- metadata -->
* **Category**: Apps
* **Status**: 0
* **Image**: [`mycorrhiza`](https://hub.docker.com/r/mycorrhiza), 4, upstream
* **Healthcheck**: No
* **Backups**: No
* **Email**: No
* **Tests**: No
* **SSO**: No
<!-- endmetadata -->
## Quick start
* `abra app new mycorrhiza`
* `abra app config <app-name>`
* `abra app deploy <app-name>`
For more, see [`docs.coopcloud.tech`](https://docs.coopcloud.tech).

26
compose.yml Normal file
View File

@ -0,0 +1,26 @@
---
version: "3.8"
services:
app:
image: thecoopcloud/mycorrhiza:v1.9.0
networks:
- proxy
volumes:
deploy:
restart_policy:
condition: on-failure
labels:
- "traefik.enable=true"
- "traefik.http.services.${STACK_NAME}.loadbalancer.server.port=1737"
- "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+1.9.0"
networks:
proxy:
external: true
volumes:
wiki_data: