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-05-02 23:28:41 -07:00
|
|
|
'version': '48.20.0',
|
2016-05-24 13:02:38 -07:00
|
|
|
|
2018-10-26 16:58:18 -07:00
|
|
|
'baseImages': [
|
2021-12-16 16:26:31 -08:00
|
|
|
{ repo: 'cloudron/base', tag: 'cloudron/base:3.2.0@sha256:ba1d566164a67c266782545ea9809dc611c4152e27686fd14060332dd88263ea' }
|
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-04-20 11:30:22 -07:00
|
|
|
'turn': { repo: 'cloudron/turn', tag: 'cloudron/turn:1.3.1@sha256:759cafab7625ff538418a1f2ed5558b1d5bff08c576bba577d865d6d02b49091' },
|
2021-04-01 11:50:01 -07:00
|
|
|
'mysql': { repo: 'cloudron/mysql', tag: 'cloudron/mysql:3.0.7@sha256:6679c2fb96f8d6d62349b607748570640a90fc46b50aad80ca2c0161655d07f4' },
|
2021-12-16 22:23:41 -08:00
|
|
|
'postgresql': { repo: 'cloudron/postgresql', tag: 'cloudron/postgresql:4.2.0@sha256:121b3ca245cae28461ea96014fde5bb8b6bdfb79584aaebc2f1f77b6c25285c6' },
|
2021-12-17 09:18:22 -08:00
|
|
|
'mongodb': { repo: 'cloudron/mongodb', tag: 'cloudron/mongodb:4.1.1@sha256:77538cb576158b7e12983d9dd13475d5173d16d398e31693a681999eb94f278a' },
|
|
|
|
|
'redis': { repo: 'cloudron/redis', tag: 'cloudron/redis:3.1.1@sha256:7b3a28f777ba0a664fd8defa6748190c63ad364ade58c61d23183bef87c9b4a8' },
|
2021-12-08 10:20:43 -08:00
|
|
|
'mail': { repo: 'cloudron/mail', tag: 'cloudron/mail:3.6.0@sha256:f67c3659d5122153f746f009e3a61a49619f95b838f357fcdf02024276252036' },
|
2021-12-17 09:18:22 -08:00
|
|
|
'graphite': { repo: 'cloudron/graphite', tag: 'cloudron/graphite:3.1.0@sha256:30ec3a01964a1e01396acf265183997c3e17fb07eac1a82b979292cc7719ff4b' },
|
|
|
|
|
'sftp': { repo: 'cloudron/sftp', tag: 'cloudron/sftp:3.5.0@sha256:4f157c06f18535ad2dfd379769c99f169adb8690e69a89a4ad3a39e9586fb49d' }
|
2016-05-24 13:02:38 -07:00
|
|
|
}
|
|
|
|
|
};
|