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.0.0@sha256:455c70428723e3a823198c57472785437eb6eab082e79b3ff04ea584faf46e92' }
|
|
],
|
|
|
|
// 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.3.1@sha256:759cafab7625ff538418a1f2ed5558b1d5bff08c576bba577d865d6d02b49091' },
|
|
'mysql': { repo: 'cloudron/mysql', tag: 'cloudron/mysql:3.0.7@sha256:6679c2fb96f8d6d62349b607748570640a90fc46b50aad80ca2c0161655d07f4' },
|
|
'postgresql': { repo: 'cloudron/postgresql', tag: 'cloudron/postgresql:4.1.0@sha256:795aa71c15635b3996c471cb6bd01533ea36d0cf5a4d28200f7384caf3205cff' },
|
|
'mongodb': { repo: 'cloudron/mongodb', tag: 'cloudron/mongodb:4.0.2@sha256:9df297ccc3370f38c54f8d614e214e082b363777cd1c6c9522e29663cc8f5362' },
|
|
'redis': { repo: 'cloudron/redis', tag: 'cloudron/redis:3.0.4@sha256:5c60de75d078ae609da5565f32dcd91030f45907e945756cc976ff207b8c6199' },
|
|
'mail': { repo: 'cloudron/mail', tag: 'cloudron/mail:3.3.3@sha256:b1093e6f38bebf4a9ae903ca385aea3a32e7cccae5ede7f2e01a34681e361a5f' },
|
|
'graphite': { repo: 'cloudron/graphite', tag: 'cloudron/graphite:3.0.1@sha256:bed9f6b5d06fe2c5289e895e806cfa5b74ad62993d705be55d4554a67d128029' },
|
|
'sftp': { repo: 'cloudron/sftp', tag: 'cloudron/sftp:3.3.1@sha256:fbd6b18351a1a2830265e1198fdfe589d8b208de2105d11ceb84160e3de35724' }
|
|
}
|
|
};
|