From 7c6e85b0a45cc3f6d0a9e02523823fc60c22cf1c Mon Sep 17 00:00:00 2001 From: gingerlime Date: Sat, 16 Mar 2019 15:48:51 +0100 Subject: [PATCH] Upgrade Thumbor (#34) * APSL/thumbor is not actively maintained and doesn't have the latest versions * [MinimaCompact](https://github.com/MinimalCompact/thumbor) is actively maintained and works closely with the thumbor core team * This change switches to use minimalcompact and also upgrades the default version to the latest * Note: not sure if it's worth hard-coding an explicit version `6.7.0` or use the `latest` tag? --- public/v1/apps/thumbor.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/public/v1/apps/thumbor.json b/public/v1/apps/thumbor.json index 0805960..c948ff6 100644 --- a/public/v1/apps/thumbor.json +++ b/public/v1/apps/thumbor.json @@ -1,11 +1,11 @@ { "captainVersion": "1", - "documentation": "Taken from https://hub.docker.com/r/apsl/thumbor/tags/", + "documentation": "Taken from https://hub.docker.com/r/minimalcompact/thumbor/tags/", "dockerCompose": { "version": "3.3", "services": { "$$cap_appname-db": { - "image": "apsl/thumbor:$$cap_thumbor_version", + "image": "minimalcompact/thumbor:$$cap_thumbor_version", "volumes": [ "$$cap_appname-thumbor:/data" ], @@ -23,9 +23,9 @@ "variables": [{ "id": "$$cap_thumbor_version", "label": "Thumbor Version", - "defaultValue": "6.4.2", - "description": "Checkout their docker page for the valid tags https://hub.docker.com/r/apsl/thumbor/tags/", + "defaultValue": "6.7.0", + "description": "Checkout their docker page for the valid tags https://hub.docker.com/r/minimalcompact/thumbor/tags/", "validRegex": "/^([^\\s^\\/])+$/" }] -} \ No newline at end of file +}