Compare commits

...

3 Commits

Author SHA1 Message Date
0ad7813b7b chore: publish 0.3.0+0.62.0 release 2022-03-03 10:49:19 +01:00
ab07cc7299 fix: get generation going 2022-01-07 12:39:26 +01:00
3f60d8c54b feat: support patch 2022-01-07 09:05:45 +01:00
4 changed files with 16 additions and 3 deletions

View File

@ -8,12 +8,15 @@ DOMAIN=outline.example.com
#EXTRA_DOMAINS=', `www.outline.example.com`'
LETS_ENCRYPT_ENV=production
# https://git.coopcloud.tech/coop-cloud-chaos-patchs/outline
#COMPOSE_FILE="compose.yml:compose.patch.yml"
# REQUIRED
SECRET_DB_PASSWORD_VERSION=v1
SECRET_SECRET_KEY_VERSION=v1 # length=64
SECRET_UTILS_SECRET_VERSION=v1 # length=64
SECRET_AWS_SECRET_KEY=v1
SECRET_AWS_SECRET_KEY_VERSION=v1
SECRET_OIDC_CLIENT_SECRET_VERSION=v1
AWS_ACCESS_KEY_ID=

View File

@ -43,3 +43,7 @@ yarn db:migrate --env=production-ssl-disabled
### Setting up your `.env` config
Avoid the use of quotes (`"..."`) as much as possible, the NodeJS scripts flip out for some reason on some vars.
### Multiple users logging in & generic oauth
`COMPOSE_FILE="compose.yml:compose.patch.yml"`

6
compose.patch.yml Normal file
View File

@ -0,0 +1,6 @@
---
version: "3.8"
services:
app:
image: thecoopcloud/outline-with-patch:latest

View File

@ -6,7 +6,7 @@ services:
networks:
- backend
- proxy
image: outlinewiki/outline:0.60.3
image: outlinewiki/outline:0.62.0
secrets:
- aws_secret_key
- db_password
@ -54,7 +54,7 @@ services:
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`${EXTRA_DOMAINS})"
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- "coop-cloud.${STACK_NAME}.version=0.2.0+0.60.3"
- "coop-cloud.${STACK_NAME}.version=0.3.0+0.62.0"
## Redirect from EXTRA_DOMAINS to DOMAIN
#- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect"
#- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true"