Started coding at the age of 13, now a professional software engineer and Scrum Master, creating and maintaining enterprise solutions. Eat - Sleep - Code - Lift - Repeat 💪🏾
can you please post the content of your Dockerfile?
Also, it is important which name you gave your build.
So you should have the Dockerfile in a folder and then run a PowerShell instance (as admin), change into the directory where your Dockerfile is and run the docker build -t firefox . command first. The firefox at the end is the name the image will be labeled with after the build and this name should be used in the docker run command.
Hi oaparfene,
can you please post the content of your Dockerfile?
Also, it is important which name you gave your build.
So you should have the
Dockerfilein a folder and then run a PowerShell instance (as admin), change into the directory where your Dockerfile is and run thedocker build -t firefox .command first. Thefirefoxat the end is the name the image will be labeled with after the build and this name should be used in the docker run command.Hi Robin,
thank you for the reply. Turns out the mistake i made was naming my Dockerfile "firefox" instead of "Dockerfile"