I want to write a dockerfile where I install a custom mysqlserver with user + password.
My command looks like this at the moment:
RUN apt-get install -y mysql-server \
-y mysql-client
can I specify the input vars as running parameter of the
docker build process?
Any ideas?
thanks
Ok, so user2915097 has mentioned a nice option to you, but if you still want to create a separate image, you might proceed with the following pointers.
I think this is all you need to work on for now.