Files
cloudron-box/src/infra_version.js
T

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 = {
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-14 20:47:30 -08:00
{ repo: 'cloudron/base', tag: 'cloudron/base:3.1.0@sha256:eb2ab9c7d361acda2f3ef2d8388154bc48f1651b5013fe6de4beea003018e427' }
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
// 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' },
'postgresql': { repo: 'cloudron/postgresql', tag: 'cloudron/postgresql:4.1.1@sha256:86e4e2f4fd43809efca7c9cb1def4d7608cf36cb9ea27052f9b64da4481db43a' },
2021-03-12 14:17:19 -08:00
'mongodb': { repo: 'cloudron/mongodb', tag: 'cloudron/mongodb:4.0.2@sha256:9df297ccc3370f38c54f8d614e214e082b363777cd1c6c9522e29663cc8f5362' },
2021-12-16 14:06:52 -08:00
'redis': { repo: 'cloudron/redis', tag: 'cloudron/redis:3.1.0@sha256:69a18cd8f11b1723d807135c9bb214d84e87b13b489a6d6be8c6c422e58d18c8' },
2021-12-08 10:20:43 -08:00
'mail': { repo: 'cloudron/mail', tag: 'cloudron/mail:3.6.0@sha256:f67c3659d5122153f746f009e3a61a49619f95b838f357fcdf02024276252036' },
2021-04-27 14:25:10 -07:00
'graphite': { repo: 'cloudron/graphite', tag: 'cloudron/graphite:3.0.1@sha256:bed9f6b5d06fe2c5289e895e806cfa5b74ad62993d705be55d4554a67d128029' },
2021-10-27 13:17:15 -07:00
'sftp': { repo: 'cloudron/sftp', tag: 'cloudron/sftp:3.4.2@sha256:810306478c3dac7caa7497e5f6381cc7ce2f68aafda849a4945d39a67cc04bc1' }
2016-05-24 13:02:38 -07:00
}
};