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-02-01 19:06:13 +01:00
'version': '48.18.0',
2016-05-24 13:02:38 -07:00
2018-10-26 16:58:18 -07:00
'baseImages': [
2021-02-06 21:57:37 -08:00
{ repo: 'cloudron/base', tag: 'cloudron/base:3.0.0@sha256:455c70428723e3a823198c57472785437eb6eab082e79b3ff04ea584faf46e92' }
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-02-06 21:57:37 -08:00
'turn': { repo: 'cloudron/turn', tag: 'cloudron/turn:1.3.0@sha256:386fb755fc41edd7086f7bcb230f7f28078936f9ae4ead6d97c741df1cc194ae' },
'mysql': { repo: 'cloudron/mysql', tag: 'cloudron/mysql:3.0.0@sha256:cf94fc7c28266c5a3d6dd5302abb37c20fa8f99764ff6a010aa1270eaa83cdc9' },
'postgresql': { repo: 'cloudron/postgresql', tag: 'cloudron/postgresql:4.0.0@sha256:650377a01f66017fce67e8ad3dba52508acb27e71a35139e35c94c45efa598d9' },
'mongodb': { repo: 'cloudron/mongodb', tag: 'cloudron/mongodb:4.0.0@sha256:c2d3ac567c5af79a9d470a8ff53938a4b6dad826ecbdd192a716a4c5e558ff3e' },
'redis': { repo: 'cloudron/redis', tag: 'cloudron/redis:3.0.0@sha256:88ef97f2e655982c16865c0a5ffac005f891b230f8864d779c32175f8b9b3b18' },
2021-01-29 00:02:03 -08:00
'mail': { repo: 'cloudron/mail', tag: 'cloudron/mail:3.1.1@sha256:e6d7c840719843c3dda26a26bb4bd97b46f4ce0f281634550136971d228be68a' },
'graphite': { repo: 'cloudron/graphite', tag: 'cloudron/graphite:2.3.0@sha256:b7bc1ca4f4d0603a01369a689129aa273a938ce195fe43d00d42f4f2d5212f50' },
2021-02-06 21:57:37 -08:00
'sftp': { repo: 'cloudron/sftp', tag: 'cloudron/sftp:3.2.0@sha256:23f0ebcb336d0a84555d795077911acf4c63e08cf4881d67ed6bb1dbaa5c0aa5' }
2016-05-24 13:02:38 -07:00
}
};