commit c119c0a89a0192b4d1f6498aaab6938d68ded9fc Author: decentral1se Date: Wed Aug 24 00:24:57 2022 +0200 init diff --git a/.env.sample b/.env.sample new file mode 100644 index 0000000..f9322e2 --- /dev/null +++ b/.env.sample @@ -0,0 +1,4 @@ +TYPE=mycorrhiza + +DOMAIN={{ .Domain }} +LETS_ENCRYPT_ENV=production diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7a6353d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.envrc diff --git a/README.md b/README.md new file mode 100644 index 0000000..6a5088e --- /dev/null +++ b/README.md @@ -0,0 +1,24 @@ +# mycorrhiza + +> A lightweight file-system wiki engine that uses Git for keeping history + + + +* **Category**: Apps +* **Status**: 0 +* **Image**: [`mycorrhiza`](https://hub.docker.com/r/mycorrhiza), 4, upstream +* **Healthcheck**: No +* **Backups**: No +* **Email**: No +* **Tests**: No +* **SSO**: No + + + +## Quick start + +* `abra app new mycorrhiza` +* `abra app config ` +* `abra app deploy ` + +For more, see [`docs.coopcloud.tech`](https://docs.coopcloud.tech). diff --git a/compose.yml b/compose.yml new file mode 100644 index 0000000..13d4f19 --- /dev/null +++ b/compose.yml @@ -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: