diff --git a/docs/install/docker/readme.md b/docs/install/docker/readme.md index 6bbded5e..06d93725 100644 --- a/docs/install/docker/readme.md +++ b/docs/install/docker/readme.md @@ -23,17 +23,17 @@ And having access to some kind of command-line terminal. `docker run --rm -td -p 23:5000 ghcr.io/maldorne/hexagon:latest` -3. Or run the container in interactive mode: + Or run the container in interactive mode: `docker run --rm -ti -p 23:5000 ghcr.io/maldorne/hexagon:latest` -4. Push the image after building it: +If you make changes to the image, push it after building it: - `docker push ghcr.io/maldorne/hexagon:latest` +`docker push ghcr.io/maldorne/hexagon:latest` -5. Pull the image from the repository: +To update the version you have in your computer, pull the image from the repository: - `docker pull ghcr.io/maldorne/hexagon:latest` +`docker pull ghcr.io/maldorne/hexagon:latest` We are mapping the 23 port in the host machine to the 5000 port in the container, so if we execute `telnet localhost` in the host machine it will connect to the mud in the container.