diff --git a/mc b/mc index 4234997..ad34d56 100755 --- a/mc +++ b/mc @@ -87,11 +87,11 @@ function connect() { if [[ ! $(which docker) ]]; then echo "docker is required"; exit 1; fi docker run --rm \ -e MODE=my-mc \ - -e PORT=$port \ + -e PORT=25565 \ -e HOST=0.0.0.0 \ -e PUBLIC=false \ -e MY_MC_API_KEY=$MY_MC_API_KEY \ - -p 25565:25565 anaxios/holesail:testing + -p $port:25565 'anaxios/holesail:2.1.0' echo "" }