From ef3d37db00a0ee25ed32f781503129fb0c3ab9ea Mon Sep 17 00:00:00 2001 From: Nick Krecklow Date: Tue, 30 Mar 2021 13:44:54 -0500 Subject: [PATCH] add: idotek.fr links to README.md --- README.md | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d3576d3..324f149 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,11 @@ You can find a list of community hosted instances below. Want to be listed here? * https://bedrock.minetrack.me * https://pings.playlegend.net * https://track.read-my-man.ga -* https://trackedservers.com/ +* https://trackedservers.com +* https://stats.idotek.fr +* https://skyblock.idotek.fr +* https://survie.idotek.fr +* https://minijeux.idotek.fr ## Updates For updates and release notes, please read the [CHANGELOG](docs/CHANGELOG.md). @@ -47,22 +51,25 @@ This requires sqlite3 drivers to be installed. ## Docker Minetrack can be built and run with Docker from this repository in several ways: -### Build and deploy directly with Docker: +### Build and deploy directly with Docker ``` # build image with name minetrack and tag latest docker build . --tag minetrack:latest + # start container, delete on exit # publish container port 8080 on host port 80 docker run --rm --publish 80:8080 minetrack:latest ``` -The published port can be changed by modifying the parameter argument, e.g.: -Publish to host port 8080: `--publish 8080:8080` -Publish to localhost (thus prohibiting external access): `--publish 127.0.0.1:8080:8080` -### Build and deploy with docker-compose: +The published port can be changed by modifying the parameter argument, e.g.: +* Publish to host port 8080: `--publish 8080:8080` +* Publish to localhost (thus prohibiting external access): `--publish 127.0.0.1:8080:8080` + +### Build and deploy with docker-compose ``` # build and start service docker-compose up --build + # stop service and remove artifacts docker-compose down ```