summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMatthieu Borgognon <[email protected]>2023-02-19 23:30:14 -0500
committerGitHub <[email protected]>2023-02-19 20:30:14 -0800
commitc0f87f370b82973008abcd6e511d5489e8d4e7ad (patch)
tree1f78c43faba27dcd612264524165abd0fc21b5d6
parent54d3aebfb9a0b751358c34e8decb44d938215706 (diff)
downloadcaprover-one-click-apps-c0f87f370b82973008abcd6e511d5489e8d4e7ad.tar.gz
caprover-one-click-apps-c0f87f370b82973008abcd6e511d5489e8d4e7ad.zip
Fix outline db migration (#869)
* Update Ghost to v5 breaking changes * Fix formatting issue * Upgrade keycloak to v18+ and switch to official repos breaking changes * Made data persistent trough postgres * Fix formatting * Update outline to v0.64+ & add OIDC connector & add SMTP config & document OSS alternatives * Fix db migration command * Upgrade to latest version --------- Co-authored-by: Matthieu Borgognon <[email protected]>
-rw-r--r--public/v4/apps/outline.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/public/v4/apps/outline.yml b/public/v4/apps/outline.yml
index 83fbba6..b553579 100644
--- a/public/v4/apps/outline.yml
+++ b/public/v4/apps/outline.yml
@@ -68,7 +68,7 @@ caproverOneClickApp:
variables:
- id: $$cap_outline_version
label: Outline Version
- defaultValue: 0.66.3
+ defaultValue: 0.68.1
description: Check out their page for the valid tags https://hub.docker.com/r/outlinewiki/outline/tags
validRegex: /^([^\s^\/])+$/
- id: $$cap_postgres_version
@@ -211,7 +211,7 @@ caproverOneClickApp:
const service = api.dockerode.getService(dockerUpdateObject.Name);
await setServiceInstances(service, 0);
- await run(["yarn", "sequelize:migrate", "--env=production-ssl-disabled"]);
+ await run(["yarn", "db:migrate", "--env=production-ssl-disabled"]);
dockerUpdateObject.version = (await service.inspect()).Version.Index;
return dockerUpdateObject;