If I have a container that I run as follows:
docker run -d\
--name thename\
--restart=always\
-p 80:80\
-p 2003-2004:2003-2004\
-p 8126:8126\
image_name
How can I create a docker file so that the container runs exactly as above without needing to specify anything but the following: docker run -d myimage
?