28 lines
1.8 KiB
JavaScript
28 lines
1.8 KiB
JavaScript
'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 = {
|
|
// a version change recreates all containers with latest docker config
|
|
'version': '48.17.1',
|
|
|
|
'baseImages': [
|
|
{ repo: 'cloudron/base', tag: 'cloudron/base:2.0.0@sha256:f9fea80513aa7c92fe2e7bf3978b54c8ac5222f47a9a32a7f8833edf0eb5a4f4' }
|
|
],
|
|
|
|
// a major version bump in the db containers will trigger the restore logic that uses the db dumps
|
|
// docker inspect --format='{{index .RepoDigests 0}}' $IMAGE to get the sha256
|
|
'images': {
|
|
'turn': { repo: 'cloudron/turn', tag: 'cloudron/turn:1.1.0@sha256:e1dd22aa6eef5beb7339834b200a8bb787ffc2264ce11139857a054108fefb4f' },
|
|
'mysql': { repo: 'cloudron/mysql', tag: 'cloudron/mysql:2.3.2@sha256:dd624870c7f8ba9b2759f93ce740d1e092a1ac4b2d6af5007a01b30ad6b316d0' },
|
|
'postgresql': { repo: 'cloudron/postgresql', tag: 'cloudron/postgresql:3.2.2@sha256:9ad409f5c9ad7a37db8d62328290702ed8ea8410b633a366643519d47177eac5' },
|
|
'mongodb': { repo: 'cloudron/mongodb', tag: 'cloudron/mongodb:3.0.0@sha256:59e50b1f55e433ffdf6d678f8c658812b4119f631db8325572a52ee40d3bc562' },
|
|
'redis': { repo: 'cloudron/redis', tag: 'cloudron/redis:2.3.0@sha256:0e31ec817e235b1814c04af97b1e7cf0053384aca2569570ce92bef0d95e94d2' },
|
|
'mail': { repo: 'cloudron/mail', tag: 'cloudron/mail:2.10.0@sha256:3aff92bfc85d6ca3cc6fc381c8a89625d2af95cc55ed2db692ef4e483e600372' },
|
|
'graphite': { repo: 'cloudron/graphite', tag: 'cloudron/graphite:2.3.0@sha256:b7bc1ca4f4d0603a01369a689129aa273a938ce195fe43d00d42f4f2d5212f50' },
|
|
'sftp': { repo: 'cloudron/sftp', tag: 'cloudron/sftp:3.0.0@sha256:4eaf6ba96ac48a5ed073f6f1e033d7c0e1b41b35c633928c1810c6683621b3fa' }
|
|
}
|
|
};
|