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
|
2021-03-16 16:20:06 -07:00
|
|
|
'version': '48.19.0',
|
2016-05-24 13:02:38 -07:00
|
|
|
|
2018-10-26 16:58:18 -07:00
|
|
|
'baseImages': [
|
2021-02-06 21:57:37 -08:00
|
|
|
{ repo: 'cloudron/base', tag: 'cloudron/base:3.0.0@sha256:455c70428723e3a823198c57472785437eb6eab082e79b3ff04ea584faf46e92' }
|
2018-10-26 16:58:18 -07:00
|
|
|
],
|
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': {
|
2021-02-06 21:57:37 -08:00
|
|
|
'turn': { repo: 'cloudron/turn', tag: 'cloudron/turn:1.3.0@sha256:386fb755fc41edd7086f7bcb230f7f28078936f9ae4ead6d97c741df1cc194ae' },
|
2021-03-12 14:17:19 -08:00
|
|
|
'mysql': { repo: 'cloudron/mysql', tag: 'cloudron/mysql:3.0.6@sha256:66d3dce2aacf44e4f31b9d15fa8706692589e289d6378e4399dab8894717f9ed' },
|
|
|
|
|
'postgresql': { repo: 'cloudron/postgresql', tag: 'cloudron/postgresql:4.0.3@sha256:712e6b03e0edd9a5ca725f29b8150388ecf7667b57d46d772da6d0fc45f3f480' },
|
|
|
|
|
'mongodb': { repo: 'cloudron/mongodb', tag: 'cloudron/mongodb:4.0.2@sha256:9df297ccc3370f38c54f8d614e214e082b363777cd1c6c9522e29663cc8f5362' },
|
2021-03-12 14:29:57 -08:00
|
|
|
'redis': { repo: 'cloudron/redis', tag: 'cloudron/redis:3.0.3@sha256:37e5222e01ae89bc5a742ce12030631de25a127b5deec8a0e992c68df0fdec10' },
|
2021-03-11 15:59:16 -08:00
|
|
|
'mail': { repo: 'cloudron/mail', tag: 'cloudron/mail:3.3.0@sha256:d0b9724e9fb4cb1da52e032481d39de96d3d1f9cc99b2296500276dda703f20d' },
|
2021-03-18 17:39:46 -07:00
|
|
|
'graphite': { repo: 'cloudron/graphite', tag: 'cloudron/graphite:2.4.1@sha256:b00b64b8df4032985d7a1ddd548a2713b6d7d88a54ebe9b7d324cece2bd6829e' },
|
2021-02-09 23:29:09 -08:00
|
|
|
'sftp': { repo: 'cloudron/sftp', tag: 'cloudron/sftp:3.2.0@sha256:61e8247ded1e07cf882ca478dab180960357c614472e80b938f1f690a46788c2' }
|
2016-05-24 13:02:38 -07:00
|
|
|
}
|
|
|
|
|
};
|