Files
cloudron-box/src/infra_version.js
T

22 lines
765 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-05-24 16:46:54 -07:00
'version': 34,
2016-05-24 13:02:38 -07:00
'baseImage': 'cloudron/base:0.8.1',
'images': {
'mysql': { repo: 'cloudron/mysql', tag: 'cloudron/mysql:0.11.0' },
'postgresql': { repo: 'cloudron/postgresql', tag: 'cloudron/postgresql:0.10.0' },
'mongodb': { repo: 'cloudron/mongodb', tag: 'cloudron/mongodb:0.9.0' },
'redis': { repo: 'cloudron/redis', tag: 'cloudron/redis:0.8.0' },
2016-05-24 16:46:54 -07:00
'mail': { repo: 'cloudron/mail', tag: 'cloudron/mail:0.13.1' },
2016-05-24 13:02:38 -07:00
'graphite': { repo: 'cloudron/graphite', tag: 'cloudron/graphite:0.8.0' }
}
};