Skip to content

Commit 6fc605a

Browse files
authored
Fix typo in Dockerfile VOLUME (#78)
It acts to create a directory mount at `"/[/var/lib/mysql/]/"`, which is definitely not we want.
1 parent 2acc93e commit 6fc605a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mysql-8.0/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ RUN mkdir -p /docker-entrypoint-mroonga-initdb.d && \
4040

4141
# mysql:8.0.30 image has DB in /var/lib/mysql/.
4242
# This clears /var/lib/mysql/ to ensure creating a new DB on "docker run".
43-
VOLUME [/var/lib/mysql]
43+
VOLUME ["/var/lib/mysql"]

0 commit comments

Comments
 (0)