Files
cloudron-box/src/infra_version.js

23 lines
874 B
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
2016-07-25 16:18:09 -07:00
'version': 40,
2016-05-24 13:02:38 -07:00
2016-08-20 10:24:29 -07:00
'baseImages': [ 'cloudron/base:0.8.1', 'cloudron/base:0.9.0' ],
2016-05-24 13:02:38 -07:00
'images': {
2016-06-16 22:00:18 -05:00
'mysql': { repo: 'cloudron/mysql', tag: 'cloudron/mysql:0.12.0' },
'postgresql': { repo: 'cloudron/postgresql', tag: 'cloudron/postgresql:0.11.0' },
2016-06-16 22:00:18 -05:00
'mongodb': { repo: 'cloudron/mongodb', tag: 'cloudron/mongodb:0.10.0' },
'redis': { repo: 'cloudron/redis', tag: 'cloudron/redis:0.9.0' },
'mail': { repo: 'cloudron/mail', tag: 'cloudron/mail:0.19.1' },
2016-06-16 22:00:18 -05:00
'graphite': { repo: 'cloudron/graphite', tag: 'cloudron/graphite:0.9.0' }
2016-05-24 13:02:38 -07:00
}
};