2016-05-24 13:02:38 -07:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
// WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
|
|
|
|
|
// These constants are used in the installer script as well
|
|
|
|
|
// Do not require anything here!
|
|
|
|
|
|
|
|
|
|
exports = module.exports = {
|
2017-10-06 15:52:04 -07:00
|
|
|
// a major version makes all apps restore from backup. #451 must be fixed before we do this.
|
2017-04-12 00:17:20 -07:00
|
|
|
// a minor version makes all apps re-configure themselves
|
2018-09-13 15:46:50 -07:00
|
|
|
'version': '48.12.0',
|
2016-05-24 13:02:38 -07:00
|
|
|
|
2018-10-16 15:10:11 +02:00
|
|
|
'baseImages': [ 'cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617' ],
|
2016-05-24 13:02:38 -07:00
|
|
|
|
2016-08-21 15:50:14 -07:00
|
|
|
// Note that if any of the databases include an upgrade, bump the infra version above
|
|
|
|
|
// This is because we upgrade using dumps instead of mysql_upgrade, pg_upgrade etc
|
2018-09-14 20:05:11 -07:00
|
|
|
// docker inspect --format='{{index .RepoDigests 0}}' $IMAGE to get the sha256
|
2016-05-24 13:02:38 -07:00
|
|
|
'images': {
|
2018-10-08 13:41:39 +02:00
|
|
|
'mysql': { repo: 'cloudron/mysql', tag: 'cloudron/mysql:2.0.0@sha256:1c177c3fa079695aea13cec6daf52b772f400022131f31e8da237f55d683d9f4' },
|
|
|
|
|
'postgresql': { repo: 'cloudron/postgresql', tag: 'cloudron/postgresql:2.0.0@sha256:ef357c0319e50fcc64cc5fa19e31e73b0632e48073d44024399fe93fbe8aaf82' },
|
2018-10-16 10:06:04 -07:00
|
|
|
'mongodb': { repo: 'cloudron/mongodb', tag: 'cloudron/mongodb:2.0.0@sha256:910112e46cb066505cf49b86efee68858714cabe8f55c605f30eeb83fb894760' },
|
2018-10-08 13:41:39 +02:00
|
|
|
'redis': { repo: 'cloudron/redis', tag: 'cloudron/redis:2.0.0@sha256:8a88dd334b62b578530a014ca1a2425a54cb9df1e475f5d3a36806e5cfa22121' },
|
2018-10-08 10:08:02 -07:00
|
|
|
'mail': { repo: 'cloudron/mail', tag: 'cloudron/mail:2.0.0@sha256:eb2463d768cccb681c404eae6d06516688dc04d8b64cbc49b3b834b78cef0a61' },
|
2018-10-08 14:18:13 -07:00
|
|
|
'graphite': { repo: 'cloudron/graphite', tag: 'cloudron/graphite:2.0.0@sha256:454f035d60b768153d4f31210380271b5ba1c09367c9d95c7fa37f9e39d2f59c' }
|
2016-05-24 13:02:38 -07:00
|
|
|
}
|
|
|
|
|
};
|