Skip to content

Commit af2d791

Browse files
authored
Fix MySQL Server Version (#5663)
1 parent 1625544 commit af2d791

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

toolset/databases/mysql/mysql.dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ENV LANG en_US.UTF-8
1515
ENV LANGUAGE en_US:en
1616
ENV LC_ALL en_US.UTF-8
1717

18-
ENV MYSQL_VERSION 8.0.19-1ubuntu18.04
18+
ENV MYSQL_VERSION 8.0.20-1ubuntu18.04
1919

2020
# https://bugs.mysql.com/bug.php?id=90695
2121
RUN ["/bin/bash", "-c", "debconf-set-selections <<< \"mysql-server mysql-server/lowercase-table-names select Enabled\""]
@@ -31,7 +31,7 @@ RUN rm -rf /ssd/mysql
3131
RUN rm -rf /ssd/log/mysql
3232
RUN cp -R -p /var/lib/mysql /ssd/
3333
RUN cp -R -p /var/log/mysql /ssd/log
34-
RUN mkdir /var/run/mysqld
34+
RUN mkdir -p /var/run/mysqld
3535

3636
# It may seem weird that we call `service mysql start` several times, but the RUN
3737
# directive is a 1-time operation for building this image. Subsequent RUN calls

0 commit comments

Comments
 (0)