You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
proxysql/docker/images/mysql/mysql-simple-dump/Dockerfile

11 lines
403 B

# We are creating a custom Dockerfile for MySQL as there is no easy way to
# move a file from host into the container. In our case, it's schema.sql
# There is a proposed improvement to "docker cp" but it's still being
# discussed (https://github.com/docker/docker/issues/5846).
FROM mysql:latest
LABEL vendor=proxysql\
com.proxysql.type=mysql
ADD ./schema.sql /tmp/
ADD ./import_schema.sh /tmp/