Files
cloudron-box/src/infra_version.js

25 lines
1.0 KiB
JavaScript
Raw Normal View History

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 = {
2016-07-25 09:38:31 -07:00
// a version bump means that all containers (apps and addons) are recreated
'version': 45,
2016-05-24 13:02:38 -07:00
2017-02-10 09:15:06 -08:00
'baseImages': [ 'cloudron/base:0.9.0', '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': {
2016-08-21 13:01:31 -07:00
'mysql': { repo: 'cloudron/mysql', tag: 'cloudron/mysql:0.13.0' },
2016-10-09 12:53:55 -07:00
'postgresql': { repo: 'cloudron/postgresql', tag: 'cloudron/postgresql:0.15.0' },
2016-08-20 11:00:08 -07:00
'mongodb': { repo: 'cloudron/mongodb', tag: 'cloudron/mongodb:0.11.0' },
2016-08-20 11:03:49 -07:00
'redis': { repo: 'cloudron/redis', tag: 'cloudron/redis:0.10.0' },
2017-01-23 16:26:44 -08:00
'mail': { repo: 'cloudron/mail', tag: 'cloudron/mail:0.29.0' },
2016-08-20 11:07:25 -07:00
'graphite': { repo: 'cloudron/graphite', tag: 'cloudron/graphite:0.10.0' }
2016-05-24 13:02:38 -07:00
}
};