add: idotek.fr links to README.md

This commit is contained in:
Nick Krecklow 2021-03-30 13:44:54 -05:00 committed by GitHub
parent 476aea106e
commit ef3d37db00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -24,7 +24,11 @@ You can find a list of community hosted instances below. Want to be listed here?
* https://bedrock.minetrack.me * https://bedrock.minetrack.me
* https://pings.playlegend.net * https://pings.playlegend.net
* https://track.read-my-man.ga * 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 ## Updates
For updates and release notes, please read the [CHANGELOG](docs/CHANGELOG.md). For updates and release notes, please read the [CHANGELOG](docs/CHANGELOG.md).
@ -47,22 +51,25 @@ This requires sqlite3 drivers to be installed.
## Docker ## Docker
Minetrack can be built and run with Docker from this repository in several ways: 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 # build image with name minetrack and tag latest
docker build . --tag minetrack:latest docker build . --tag minetrack:latest
# start container, delete on exit # start container, delete on exit
# publish container port 8080 on host port 80 # publish container port 8080 on host port 80
docker run --rm --publish 80:8080 minetrack:latest 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 # build and start service
docker-compose up --build docker-compose up --build
# stop service and remove artifacts # stop service and remove artifacts
docker-compose down docker-compose down
``` ```