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
|
2022-11-17 15:49:59 +01:00
|
|
|
'version': '49.4.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-12-20 09:02:00 -08:00
|
|
|
'turn': { repo: 'cloudron/turn', tag: 'cloudron/turn:1.4.0@sha256:45817f1631992391d585f171498d257487d872480fd5646723a2b956cc4ef15d' },
|
2022-10-11 23:33:35 +02:00
|
|
|
'mysql': { repo: 'cloudron/mysql', tag: 'cloudron/mysql:3.2.2@sha256:8648ca5a16fcdec72799b919c5f62419fd19e922e3d98d02896b921ae6127ef4' },
|
2022-11-20 18:05:30 +01:00
|
|
|
'postgresql': { repo: 'cloudron/postgresql', tag: 'cloudron/postgresql:4.3.5@sha256:bc8cb91cbd48ee9a2f5a609b6131cd21a0210c15aaf127ee77963d90a125530a' },
|
2022-10-11 23:33:35 +02:00
|
|
|
'mongodb': { repo: 'cloudron/mongodb', tag: 'cloudron/mongodb:4.2.2@sha256:df928d7dce1ac6454fc584787fa863f6d5e7ee0abb775dde5916a555fc94c3c7' },
|
|
|
|
|
'redis': { repo: 'cloudron/redis', tag: 'cloudron/redis:3.3.1@sha256:383e11a5c7a54d17eb6bbceb0ffa92f486167be6ea9978ec745c8c8e9b7dfb19' },
|
2022-11-24 18:27:33 +01:00
|
|
|
'mail': { repo: 'cloudron/mail', tag: 'cloudron/mail:3.7.4@sha256:8ddbf13ee3fd479e18923c7bf1370d9d8aa5f12a94cbbda5afac8b5a4af72a28' },
|
2022-11-30 10:37:28 +01:00
|
|
|
'graphite': { repo: 'cloudron/graphite', tag: 'cloudron/graphite:3.2.0@sha256:182e5cae69fbddc703cb9f91be909452065c7ae159e9836cc88317c7a00f0e62' },
|
2022-04-07 17:46:32 +02:00
|
|
|
'sftp': { repo: 'cloudron/sftp', tag: 'cloudron/sftp:3.6.1@sha256:ba4b9a1fe274c0ef0a900e5d0deeb8f3da08e118798d1d90fbf995cc0cf6e3a3' }
|
2016-05-24 13:02:38 -07:00
|
|
|
}
|
|
|
|
|
};
|