I am trying to write to the file in /etc/hosts within a docker container when I perform the run command, but when I shh into the container and check the hosts file, nothing has been written.
What is the correct command to do this?
I am running my image with the following command:
docker run -it -p 3000:3000 <imageName> bash echo 192.168.56.101 mypath.dev >> /etc/hosts
-itand-dare conflicting. The first spawns an interactive terminal, the second lets it run as a daemon in the background. Please fix that first.-ddocker run ... myimage bash(no semicolon here).