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
'version': '49.4.0',
2016-05-24 13:02:38 -07:00
2018-10-26 16:58:18 -07:00
'baseImages': [
2022-12-05 12:26:31 +01:00
{ repo: 'cloudron/base', tag: 'cloudron/base:4.0.0@sha256:31b195ed0662bdb06a6e8a5ddbedb6f191ce92e8bee04c03fb02dd4e9d0286df' }
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': {
2022-12-06 09:52:10 +01:00
'turn': { repo: 'cloudron/turn', tag: 'cloudron/turn:1.5.0@sha256:c59a6da9ea55073ede1ba6329739fca72eddf64c3a3c10280bcc5b7fb8197865' },
'mysql': { repo: 'cloudron/mysql', tag: 'cloudron/mysql:3.3.0@sha256:ccf83bef4b452fd5c89bf4a68054cb8c49eb74eff7efbbac7da4e9203c73d0a2' },
2022-12-06 11:52:09 +01:00
'postgresql': { repo: 'cloudron/postgresql', tag: 'cloudron/postgresql:5.0.0@sha256:8bd184393bc3024a6254fffd8d76fd4ef4160579c2fbde02bd5f111520c065de' },
2022-10-11 23:33:35 +02:00
'mongodb': { repo: 'cloudron/mongodb', tag: 'cloudron/mongodb:4.2.2@sha256:df928d7dce1ac6454fc584787fa863f6d5e7ee0abb775dde5916a555fc94c3c7' },
2022-12-06 09:52:10 +01:00
'redis': { repo: 'cloudron/redis', tag: 'cloudron/redis:3.4.0@sha256:19680fcf9b36720468674e85b2d9ad085da759dc08811ee547474c32ce70bf99' },
2022-12-28 14:46:52 +01:00
'mail': { repo: 'cloudron/mail', tag: 'cloudron/mail:3.8.1@sha256:74010d165db11edb7552bc02d67255ccc7f83b57c2303502931b937d95c5ee60' },
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
}
};