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
|
2023-03-15 21:16:05 +01:00
|
|
|
'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
|
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': {
|
2023-07-27 17:11:55 +05:30
|
|
|
'turn': { repo: 'cloudron/turn', tag: 'cloudron/turn:1.6.0@sha256:7e7929505f646feb44795668f87e1e53651f9c146a90b281159684c3ddc696e3' },
|
2023-04-10 10:35:25 +02:00
|
|
|
'mysql': { repo: 'cloudron/mysql', tag: 'cloudron/mysql:3.3.7@sha256:5c8fe784859a5bc8c839712d8b52427247a54bce9126fb2d50ca2535e6330647' },
|
2023-06-30 22:06:23 +05:30
|
|
|
'postgresql': { repo: 'cloudron/postgresql', tag: 'cloudron/postgresql:5.0.7@sha256:4be3401b9d1374d1e165bdbd1a49ea8cdee748f15f180538306637868abffbac' },
|
2023-04-11 10:46:08 +02:00
|
|
|
'mongodb': { repo: 'cloudron/mongodb', tag: 'cloudron/mongodb:4.3.7@sha256:6217723c33f1555fdaf5064a4ee87ab582523ac24fe15fafe9838b137e185296' },
|
2023-05-09 10:53:40 +02:00
|
|
|
'redis': { repo: 'cloudron/redis', tag: 'cloudron/redis:3.5.0@sha256:ee6da2599a72afaec1d80c41db9b5fe79c882fb920195659e871501ea2e94d18' },
|
2023-07-27 22:56:36 +05:30
|
|
|
'mail': { repo: 'cloudron/mail', tag: 'cloudron/mail:3.9.0@sha256:c990b6e1f928f846e2394219fdda1fdf388e45be08489965bc41f99f2a86a4ca' },
|
2023-03-09 01:55:12 +01:00
|
|
|
'graphite': { repo: 'cloudron/graphite', tag: 'cloudron/graphite:3.3.0@sha256:005addac7e7576f3960b562404ce59442bc861626af0ae0f5122484f5bfcbbc1' },
|
2023-07-26 16:41:16 +02:00
|
|
|
'sftp': { repo: 'cloudron/sftp', tag: 'cloudron/sftp:3.7.4@sha256:4c657982b46b4106c48b84a77ced68dfeb8d0c97cba64ad200ed9396064bb873' }
|
2016-05-24 13:02:38 -07:00
|
|
|
}
|
|
|
|
|
};
|