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
|
2017-10-26 21:50:16 -07:00
|
|
|
'version': '48.7.0',
|
2016-05-24 13:02:38 -07:00
|
|
|
|
2017-02-16 09:25:17 -08:00
|
|
|
'baseImages': [ 'cloudron/base:0.10.0' ],
|
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
|
2016-05-24 13:02:38 -07:00
|
|
|
'images': {
|
2017-06-22 14:16:56 -07:00
|
|
|
'mysql': { repo: 'cloudron/mysql', tag: 'cloudron/mysql:0.18.0' },
|
2017-05-10 09:34:33 -07:00
|
|
|
'postgresql': { repo: 'cloudron/postgresql', tag: 'cloudron/postgresql:0.17.0' },
|
|
|
|
|
'mongodb': { repo: 'cloudron/mongodb', tag: 'cloudron/mongodb:0.13.0' },
|
2017-02-14 12:23:17 -08:00
|
|
|
'redis': { repo: 'cloudron/redis', tag: 'cloudron/redis:0.11.0' },
|
2017-10-28 20:58:26 -07:00
|
|
|
'mail': { repo: 'cloudron/mail', tag: 'cloudron/mail:0.38.1' },
|
2017-09-27 15:35:53 -07:00
|
|
|
'graphite': { repo: 'cloudron/graphite', tag: 'cloudron/graphite:0.12.0' }
|
2016-05-24 13:02:38 -07:00
|
|
|
}
|
|
|
|
|
};
|