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-02-21 12:03:58 +01:00
|
|
|
'version': '49.5.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': {
|
2022-12-06 09:52:10 +01:00
|
|
|
'turn': { repo: 'cloudron/turn', tag: 'cloudron/turn:1.5.0@sha256:c59a6da9ea55073ede1ba6329739fca72eddf64c3a3c10280bcc5b7fb8197865' },
|
2023-03-02 21:20:46 +01:00
|
|
|
'mysql': { repo: 'cloudron/mysql', tag: 'cloudron/mysql:3.3.2@sha256:c19ca4f39ba87fe0c2e99c8bda6c99c1cd1ed3c7a5e331cfe6ec03935675442b' },
|
2022-12-29 16:15:00 +01:00
|
|
|
'postgresql': { repo: 'cloudron/postgresql', tag: 'cloudron/postgresql:5.0.1@sha256:51e0676df61aa61f292bf8abbdd7851e351c7580869d46c84f51bd4859644e07' },
|
2023-03-08 23:44:21 +01:00
|
|
|
'mongodb': { repo: 'cloudron/mongodb', tag: 'cloudron/mongodb:5.0.0@sha256:fd03b29668be14c95ae1b2a870456d6bb94e04c52b8502b305fe51517602135a' },
|
2022-12-06 09:52:10 +01:00
|
|
|
'redis': { repo: 'cloudron/redis', tag: 'cloudron/redis:3.4.0@sha256:19680fcf9b36720468674e85b2d9ad085da759dc08811ee547474c32ce70bf99' },
|
2023-02-21 10:38:03 +01:00
|
|
|
'mail': { repo: 'cloudron/mail', tag: 'cloudron/mail:3.8.3@sha256:877a1afb99e8cae8c82d5a2fca77840425eb7fafc24360fdd1c9c299e41bcfeb' },
|
2022-11-30 10:37:28 +01:00
|
|
|
'graphite': { repo: 'cloudron/graphite', tag: 'cloudron/graphite:3.2.0@sha256:182e5cae69fbddc703cb9f91be909452065c7ae159e9836cc88317c7a00f0e62' },
|
2023-02-25 15:23:17 +01:00
|
|
|
'sftp': { repo: 'cloudron/sftp', tag: 'cloudron/sftp:3.6.2@sha256:8d5df41c6ac965359d0c5f06a7461e2ed450db4e556f4e21e4efd7ec02adc654' }
|
2016-05-24 13:02:38 -07:00
|
|
|
}
|
|
|
|
|
};
|