├── .github └── workflows │ ├── build-and-publish.yml │ └── stale.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app ├── app.sh ├── config │ ├── McMyAdmin.conf │ └── Minecraft │ │ ├── eula.txt │ │ └── server.properties └── docker-entrypoint.sh ├── docker-compose.yml └── test └── docker-compose.yml /.github/workflows/build-and-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekgator/docker-mcmyadmin/HEAD/.github/workflows/build-and-publish.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekgator/docker-mcmyadmin/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | test/mcmyadmin -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekgator/docker-mcmyadmin/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekgator/docker-mcmyadmin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekgator/docker-mcmyadmin/HEAD/README.md -------------------------------------------------------------------------------- /app/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekgator/docker-mcmyadmin/HEAD/app/app.sh -------------------------------------------------------------------------------- /app/config/McMyAdmin.conf: -------------------------------------------------------------------------------- 1 | Java.Path=/usr/local/openjdk-18/bin/java 2 | -------------------------------------------------------------------------------- /app/config/Minecraft/eula.txt: -------------------------------------------------------------------------------- 1 | eula=false -------------------------------------------------------------------------------- /app/config/Minecraft/server.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekgator/docker-mcmyadmin/HEAD/app/config/Minecraft/server.properties -------------------------------------------------------------------------------- /app/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekgator/docker-mcmyadmin/HEAD/app/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekgator/docker-mcmyadmin/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /test/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekgator/docker-mcmyadmin/HEAD/test/docker-compose.yml --------------------------------------------------------------------------------