File tree Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 1
- FROM lsiobase/ubuntu:xenial
1
+ FROM lsiobase/ubuntu:bionic
2
2
3
3
# set version label
4
4
ARG BUILD_DATE
@@ -12,11 +12,18 @@ ENV MYSQL_DIR="/config"
12
12
ENV DATADIR=$MYSQL_DIR/databases
13
13
14
14
RUN \
15
- echo "**** add mariadb repository ****" && \
16
- apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8 && \
17
- echo "deb [arch=amd64,i386] http://mirrors.coreix.net/mariadb/repo/10.1/ubuntu xenial main" >> /etc/apt/sources.list.d/mariadb.list && \
18
- echo "deb-src http://mirrors.coreix.net/mariadb/repo/10.1/ubuntu xenial main" >> /etc/apt/sources.list.d/mariadb.list && \
19
- echo "**** install packages ****" && \
15
+ echo "**** install gnupg ****" && \
16
+ apt-get update && \
17
+ apt-get install -y \
18
+ gnupg && \
19
+ echo "add mariadb repository ****" && \
20
+ echo "(redundant on armhf platform, but added for consistent dockerfile on all platforms) ****" && \
21
+ apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8 && \
22
+ echo "deb http://mirror.sax.uk.as61049.net/mariadb/repo/10.3/ubuntu bionic main" >> \
23
+ /etc/apt/sources.list.d/mariadb.list && \
24
+ echo "deb-src http://mirror.sax.uk.as61049.net/mariadb/repo/10.3/ubuntu bionic main" >> \
25
+ /etc/apt/sources.list.d/mariadb.list && \
26
+ echo "**** install runtime packages ****" && \
20
27
apt-get update && \
21
28
apt-get install -y \
22
29
mariadb-server && \
Original file line number Diff line number Diff line change @@ -89,6 +89,7 @@ Find custom.cnf in /config for config changes (restart container for them to tak
89
89
90
90
## Versions
91
91
92
+ + ** 10.09.18:** Rebase to ubuntu bionic and use 10.3 mariadb repository.
92
93
+ ** 09.12.17:** Fix continuation lines.
93
94
+ ** 12.09.17:** Gracefully shut down mariadb
94
95
+ ** 27.10.16:** Implement linting suggestions on database init script.
You can’t perform that action at this time.
0 commit comments