forked from docker-library/mysql
- Notifications
You must be signed in to change notification settings - Fork 581
/
Copy pathVERSION
40 lines (28 loc) · 1.08 KB
/
VERSION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
IMAGE_VERSION=1.2.21-cluster
# LATEST is always set to the
# current highest release, which is,
# either 'innovation' or an LTS series
# i.e. 9.7, or 10.7
LATEST="innovation"
# LATEST_LTS is set to the highest
# LTS series currently being released
# i.e. when 9.7 release will come it
# will be set to 9.7 up till 10.7 and
# then 10.7 and so on
LATEST_LTS="8.4"
# The value of key should be series
# i.e. 8.0, 8.4, innovation, 9.7, etc.
# do not use any other value for key
# like 'latest-8.4' or 'lts-84', etch
declare -A MYSQL_CLUSTER_VERSIONS
MYSQL_CLUSTER_VERSIONS["8.0"]=8.0.42
MYSQL_CLUSTER_VERSIONS["8.4"]=8.4.5
MYSQL_CLUSTER_VERSIONS["innovation"]=9.3.0
declare -A MYSQL_SHELL_VERSIONS
MYSQL_SHELL_VERSIONS["8.0"]=8.0.42
MYSQL_SHELL_VERSIONS["8.4"]=8.4.5
MYSQL_SHELL_VERSIONS["innovation"]=9.3.0
declare -A FULL_SERVER_VERSIONS
FULL_SERVER_VERSIONS["8.0"]="${MYSQL_CLUSTER_VERSIONS["8.0"]}-${IMAGE_VERSION}"
FULL_SERVER_VERSIONS["8.4"]="${MYSQL_CLUSTER_VERSIONS["8.4"]}-${IMAGE_VERSION}"
FULL_SERVER_VERSIONS["innovation"]="${MYSQL_CLUSTER_VERSIONS["innovation"]}-${IMAGE_VERSION}"