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.20.0',
|
|
|
|
'baseImages': [
|
|
{ repo: 'cloudron/base', tag: 'cloudron/base:3.2.0@sha256:ba1d566164a67c266782545ea9809dc611c4152e27686fd14060332dd88263ea' }
|
|
],
|
|
|
|
// 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.4.0@sha256:45817f1631992391d585f171498d257487d872480fd5646723a2b956cc4ef15d' },
|
|
'mysql': { repo: 'cloudron/mysql', tag: 'cloudron/mysql:3.1.0@sha256:a7a0a05c9dd06372b260d0de33d600571efc59af6a5cd75c292a6e82a6314f14' },
|
|
'postgresql': { repo: 'cloudron/postgresql', tag: 'cloudron/postgresql:4.2.0@sha256:121b3ca245cae28461ea96014fde5bb8b6bdfb79584aaebc2f1f77b6c25285c6' },
|
|
'mongodb': { repo: 'cloudron/mongodb', tag: 'cloudron/mongodb:4.1.1@sha256:77538cb576158b7e12983d9dd13475d5173d16d398e31693a681999eb94f278a' },
|
|
'redis': { repo: 'cloudron/redis', tag: 'cloudron/redis:3.1.1@sha256:7b3a28f777ba0a664fd8defa6748190c63ad364ade58c61d23183bef87c9b4a8' },
|
|
'mail': { repo: 'cloudron/mail', tag: 'cloudron/mail:3.6.0@sha256:67541d29f1ce3ace245b4acdaac28acde3cc15f4f83b98e9b7315930aeb5084c' },
|
|
'graphite': { repo: 'cloudron/graphite', tag: 'cloudron/graphite:3.1.0@sha256:30ec3a01964a1e01396acf265183997c3e17fb07eac1a82b979292cc7719ff4b' },
|
|
'sftp': { repo: 'cloudron/sftp', tag: 'cloudron/sftp:3.5.1@sha256:19c8d712d9cb41d297887c6865d77e15e52a3c4a6246037743130407a3c62603' }
|
|
}
|
|
};
|