add: idotek.fr links to README.md
This commit is contained in:
parent
476aea106e
commit
ef3d37db00
19
README.md
19
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
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user