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.0',
|
|
|
|
'baseImages': [
|
|
{ repo: 'cloudron/base', tag: 'cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617' }
|
|
],
|
|
|
|
// 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/coturn', tag: 'cloudron/coturn:0.0.1@sha256:947a013cc079b56508b08be2b2898aaafe2ded110a8b7250c48f321e60fc0182' },
|
|
'mysql': { repo: 'cloudron/mysql', tag: 'cloudron/mysql:2.1.0@sha256:eee0dfd3829d563f2063084bc0d7c8802c4bdd6e233159c6226a17ff7a9a3503' },
|
|
'postgresql': { repo: 'cloudron/postgresql', tag: 'cloudron/postgresql:2.0.2@sha256:6dcee0731dfb9b013ed94d56205eee219040ee806c7e251db3b3886eaa4947ff' },
|
|
'mongodb': { repo: 'cloudron/mongodb', tag: 'cloudron/mongodb:2.1.0@sha256:6d1bf221cfe6124957e2c58b57c0a47214353496009296acb16adf56df1da9d5' },
|
|
'redis': { repo: 'cloudron/redis', tag: 'cloudron/redis:2.1.0@sha256:f2cda21bd15c21bbf44432df412525369ef831a2d53860b5c5b1675e6f384de2' },
|
|
'mail': { repo: 'cloudron/mail', tag: 'cloudron/mail:2.7.0@sha256:a64207a7af0b89a45f04671977600cfb00d21bc50d081fb40b1fe856361319c4' },
|
|
'graphite': { repo: 'cloudron/graphite', tag: 'cloudron/graphite:2.2.0@sha256:fc9ca69d16e6ebdbd98ed53143d4a0d2212eef60cb638dc71219234e6f427a2c' },
|
|
'sftp': { repo: 'cloudron/sftp', tag: 'cloudron/sftp:1.0.0@sha256:3b70aac36700225945a4a39b5a400c28e010e980879d0dcca76e4a37b04a16ed' }
|
|
}
|
|
};
|