Files
cloudron-box/src/infra_version.js

28 lines
1.8 KiB
JavaScript
Raw Normal View History

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 = {
// a version change recreates all containers with latest docker config
'version': '49.0.0',
2016-05-24 13:02:38 -07:00
2018-10-26 16:58:18 -07:00
'baseImages': [
{ 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
// 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
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' },
'mysql': { repo: 'cloudron/mysql', tag: 'cloudron/mysql:3.1.0@sha256:a7a0a05c9dd06372b260d0de33d600571efc59af6a5cd75c292a6e82a6314f14' },
2022-01-21 22:31:51 -08:00
'postgresql': { repo: 'cloudron/postgresql', tag: 'cloudron/postgresql:4.2.1@sha256:c37f9303d921c599da8437f2bd952333dac665be206ce95963897f43c9f39be9' },
'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-19 00:30:22 -08:00
'mail': { repo: 'cloudron/mail', tag: 'cloudron/mail:3.6.0@sha256:67541d29f1ce3ace245b4acdaac28acde3cc15f4f83b98e9b7315930aeb5084c' },
'graphite': { repo: 'cloudron/graphite', tag: 'cloudron/graphite:3.1.0@sha256:30ec3a01964a1e01396acf265183997c3e17fb07eac1a82b979292cc7719ff4b' },
2022-02-09 20:17:20 -08:00
'sftp': { repo: 'cloudron/sftp', tag: 'cloudron/sftp:3.6.0@sha256:9c686b10c1a3ba344a743f399d08b4da5426e111f455114980f0ae0229c1ab23' }
2016-05-24 13:02:38 -07:00
}
};