Skip to content

Commit

Permalink
upgrade to v0.71.0
Browse files Browse the repository at this point in the history
  • Loading branch information
njsubedi committed Sep 19, 2023
1 parent cb0c81f commit 9b08290
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CloudronManifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"title": "Outline Wiki",
"author": "Outline authors",
"tagline": "Your team’s knowledge base",
"version": "0.67.2",
"version": "0.71.0",
"icon": "manifest/logo.png",
"description": "file://manifest/DESCRIPTION.md",
"changelog": "file://manifest/CHANGELOG.md",
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM cloudron/base:3.2.0@sha256:ba1d566164a67c266782545ea9809dc611c4152e27686fd14060332dd88263ea

ARG VERSION=0.67.2
ARG VERSION=0.71.0

EXPOSE 3000

Expand Down
6 changes: 6 additions & 0 deletions manifest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
v0.71.0
Version bump to [0.71.0](https://github.com/outline/outline/releases)

v0.69.2
Version bump to [0.69.2](https://github.com/outline/outline/releases)

v0.67.2
Version bump to [0.67.2](https://github.com/outline/outline/releases)

Expand Down
8 changes: 4 additions & 4 deletions manifest/POSTINSTALL.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Outline is set up to authenticate only with an existing OIDC server, like Keycloak.
Outline is set up to authenticate only with an existing OIDC server, like Cloudron itself.

On your OIDC Provider, follow these steps:

Expand All @@ -22,9 +22,9 @@ OIDC_CLIENT_SECRET=<your-client-secret>
# Required URLs for authentication using Oauth 2.0
# For example, on Keycloak running on the domain <auth.example.com>
# And, the client is added to the reaml called "cloudron"
OIDC_AUTH_URI=https://auth.example.com/realms/cloudron/protocol/openid-connect/auth
OIDC_TOKEN_URI=https://auth.example.com/realms/cloudron/protocol/openid-connect/token
OIDC_USERINFO_URI=https://auth.example.com/realms/cloudron/protocol/openid-connect/userinfo
OIDC_AUTH_URI=https://my.example.com/openid/auth
OIDC_TOKEN_URI=https://my.example.com/openid/token
OIDC_USERINFO_URI=https://my.example.com/openid/me



Expand Down
3 changes: 2 additions & 1 deletion start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ mkdir -p /run/.yarn /run/.cache
chown -R cloudron:cloudron /app/data /run/.yarn /run/.cache

echo "Run migrations"
gosu cloudron:cloudron yarn db:migrate --env=production-ssl-disabled
echo "No need to run, as this is done by Outline"
#gosu cloudron:cloudron yarn db:migrate --env=production-ssl-disabled

echo "==> starting server"
exec /usr/local/bin/gosu cloudron:cloudron yarn start

0 comments on commit 9b08290

Please sign in to comment.