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 = {
|
2018-10-16 11:04:34 -07:00
|
|
|
// a version change recreates all containers with latest docker config
|
2018-11-10 18:57:50 -08:00
|
|
|
'version': '48.12.1',
|
2016-05-24 13:02:38 -07:00
|
|
|
|
2018-10-26 16:58:18 -07:00
|
|
|
'baseImages': [
|
|
|
|
|
{ repo: 'cloudron/base', tag: 'cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617' }
|
|
|
|
|
],
|
2016-05-24 13:02:38 -07:00
|
|
|
|
2018-10-16 11:04:34 -07:00
|
|
|
// a major version bump in the db containers will trigger the restore logic that uses the db dumps
|
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-23 15:59:40 +02:00
|
|
|
'mysql': { repo: 'cloudron/mysql', tag: 'cloudron/mysql:2.0.1@sha256:5a13360da4a2085c7d474bea6b1090c5eb24732d4f73459942af7612d4993d7f' },
|
2018-11-08 20:51:14 +01:00
|
|
|
'postgresql': { repo: 'cloudron/postgresql', tag: 'cloudron/postgresql:2.0.2@sha256:6dcee0731dfb9b013ed94d56205eee219040ee806c7e251db3b3886eaa4947ff' },
|
2018-11-11 22:15:51 -08:00
|
|
|
'mongodb': { repo: 'cloudron/mongodb', tag: 'cloudron/mongodb:2.0.2@sha256:95e006390ddce7db637e1672eb6f3c257d3c2652747424f529b1dee3cbe6728c' },
|
2018-10-08 13:41:39 +02:00
|
|
|
'redis': { repo: 'cloudron/redis', tag: 'cloudron/redis:2.0.0@sha256:8a88dd334b62b578530a014ca1a2425a54cb9df1e475f5d3a36806e5cfa22121' },
|
2018-10-17 14:18:54 -07:00
|
|
|
'mail': { repo: 'cloudron/mail', tag: 'cloudron/mail:2.0.0@sha256:3c0fbb2a042ac471940ac3e9f6ffa900c8a294941fb7de509b2e3309b09fbffd' },
|
2018-11-16 19:23:09 -08:00
|
|
|
'graphite': { repo: 'cloudron/graphite', tag: 'cloudron/graphite:2.0.1@sha256:454f035d60b768153d4f31210380271b5ba1c09367c9d95c7fa37f9e39d2f59c' }
|
2016-05-24 13:02:38 -07:00
|
|
|
}
|
|
|
|
|
};
|