Skip to content

Commit 83a5c01

Browse files
author
Dave Barnum
committed
fix.
1 parent 5ba68c4 commit 83a5c01

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ COPY ["bin/initialize.sh", "bin/preflight.sh", "bin/docker-healthcheck", "bin/pe
99
RUN chmod 755 /usr/local/bin/docker-healthcheck; \
1010
chmod 755 /usr/local/bin/persistence-cleanup.sh; \
1111
chmod 755 /usr/local/bin/initialize.sh; \
12-
chmod 755 /usr/local/bin/preflight.sh; \
12+
chmod 755 /usr/local/bin/preflight.sh; \
1313
sed -i '/bin\/bash/a /usr/local/bin/initialize.sh' /usr/local/bin/docker-entrypoint.sh; \
14-
sed -i '/exec "$@"/i /usr/local/bin/preflight.sh' /usr/local/bin/docker-entrypoint.sh
14+
sed -i '/exec "$@"/i /usr/local/bin/preflight.sh' /usr/local/bin/docker-entrypoint.sh
1515

1616
# we need to touch and chown config files, since we cant write as mysql user
1717
RUN touch /etc/mysql/conf.d/galera.cnf \
1818
touch /etc/mysql/conf.d/cust.cnf \
1919
&& chown mysql.mysql /etc/mysql/conf.d/galera.cnf \
20-
&& chown mysql.mysql /etc/mysql/conf.d/cust.cnf \
20+
&& chown mysql.mysql /etc/mysql/conf.d/cust.cnf \
2121
&& chown mysql.mysql /docker-entrypoint-initdb.d/*.sql
2222

2323
# we expose all Cluster related Ports

0 commit comments

Comments
 (0)