├── .editorconfig ├── .github └── workflows │ ├── base.yml │ ├── games.yml │ ├── go.yml │ ├── installers.yml │ ├── java.yml │ ├── nodejs.yml │ └── python.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── games ├── rust │ ├── Dockerfile │ ├── entrypoint.sh │ └── wrapper.js └── source │ ├── Dockerfile │ └── entrypoint.sh ├── go ├── 1.14 │ └── Dockerfile ├── 1.15 │ └── Dockerfile ├── 1.16 │ └── Dockerfile ├── 1.17 │ └── Dockerfile └── entrypoint.sh ├── installers ├── alpine │ └── Dockerfile └── debian │ └── Dockerfile ├── java ├── 8 │ └── Dockerfile ├── 11 │ └── Dockerfile ├── 16 │ └── Dockerfile ├── 17 │ └── Dockerfile ├── 18 │ └── Dockerfile ├── 19 │ └── Dockerfile ├── 21 │ └── Dockerfile ├── 11j9 │ └── Dockerfile ├── 16j9 │ └── Dockerfile ├── 17j9 │ └── Dockerfile ├── 18j9 │ └── Dockerfile ├── 19j9 │ └── Dockerfile ├── 8j9 │ └── Dockerfile └── entrypoint.sh ├── nodejs ├── 12 │ └── Dockerfile ├── 14 │ └── Dockerfile ├── 15 │ └── Dockerfile ├── 16 │ └── Dockerfile ├── 17 │ └── Dockerfile ├── 18 │ └── Dockerfile ├── 20 │ └── Dockerfile └── entrypoint.sh ├── oses ├── alpine │ ├── Dockerfile │ └── entrypoint.sh └── debian │ ├── Dockerfile │ └── entrypoint.sh └── python ├── 3.10 └── Dockerfile ├── 3.11 └── Dockerfile ├── 3.7 └── Dockerfile ├── 3.8 └── Dockerfile ├── 3.9 └── Dockerfile └── entrypoint.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/.github/workflows/base.yml -------------------------------------------------------------------------------- /.github/workflows/games.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/.github/workflows/games.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/installers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/.github/workflows/installers.yml -------------------------------------------------------------------------------- /.github/workflows/java.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/.github/workflows/java.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.github/workflows/python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/.github/workflows/python.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/README.md -------------------------------------------------------------------------------- /games/rust/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/games/rust/Dockerfile -------------------------------------------------------------------------------- /games/rust/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/games/rust/entrypoint.sh -------------------------------------------------------------------------------- /games/rust/wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/games/rust/wrapper.js -------------------------------------------------------------------------------- /games/source/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/games/source/Dockerfile -------------------------------------------------------------------------------- /games/source/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/games/source/entrypoint.sh -------------------------------------------------------------------------------- /go/1.14/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/go/1.14/Dockerfile -------------------------------------------------------------------------------- /go/1.15/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/go/1.15/Dockerfile -------------------------------------------------------------------------------- /go/1.16/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/go/1.16/Dockerfile -------------------------------------------------------------------------------- /go/1.17/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/go/1.17/Dockerfile -------------------------------------------------------------------------------- /go/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/go/entrypoint.sh -------------------------------------------------------------------------------- /installers/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/installers/alpine/Dockerfile -------------------------------------------------------------------------------- /installers/debian/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/installers/debian/Dockerfile -------------------------------------------------------------------------------- /java/11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/java/11/Dockerfile -------------------------------------------------------------------------------- /java/11j9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/java/11j9/Dockerfile -------------------------------------------------------------------------------- /java/16/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/java/16/Dockerfile -------------------------------------------------------------------------------- /java/16j9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/java/16j9/Dockerfile -------------------------------------------------------------------------------- /java/17/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/java/17/Dockerfile -------------------------------------------------------------------------------- /java/17j9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/java/17j9/Dockerfile -------------------------------------------------------------------------------- /java/18/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/java/18/Dockerfile -------------------------------------------------------------------------------- /java/18j9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/java/18j9/Dockerfile -------------------------------------------------------------------------------- /java/19/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/java/19/Dockerfile -------------------------------------------------------------------------------- /java/19j9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/java/19j9/Dockerfile -------------------------------------------------------------------------------- /java/21/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/java/21/Dockerfile -------------------------------------------------------------------------------- /java/8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/java/8/Dockerfile -------------------------------------------------------------------------------- /java/8j9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/java/8j9/Dockerfile -------------------------------------------------------------------------------- /java/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/java/entrypoint.sh -------------------------------------------------------------------------------- /nodejs/12/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/nodejs/12/Dockerfile -------------------------------------------------------------------------------- /nodejs/14/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/nodejs/14/Dockerfile -------------------------------------------------------------------------------- /nodejs/15/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/nodejs/15/Dockerfile -------------------------------------------------------------------------------- /nodejs/16/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/nodejs/16/Dockerfile -------------------------------------------------------------------------------- /nodejs/17/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/nodejs/17/Dockerfile -------------------------------------------------------------------------------- /nodejs/18/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/nodejs/18/Dockerfile -------------------------------------------------------------------------------- /nodejs/20/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/nodejs/20/Dockerfile -------------------------------------------------------------------------------- /nodejs/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/nodejs/entrypoint.sh -------------------------------------------------------------------------------- /oses/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/oses/alpine/Dockerfile -------------------------------------------------------------------------------- /oses/alpine/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/oses/alpine/entrypoint.sh -------------------------------------------------------------------------------- /oses/debian/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/oses/debian/Dockerfile -------------------------------------------------------------------------------- /oses/debian/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/oses/debian/entrypoint.sh -------------------------------------------------------------------------------- /python/3.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/python/3.10/Dockerfile -------------------------------------------------------------------------------- /python/3.11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/python/3.11/Dockerfile -------------------------------------------------------------------------------- /python/3.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/python/3.7/Dockerfile -------------------------------------------------------------------------------- /python/3.8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/python/3.8/Dockerfile -------------------------------------------------------------------------------- /python/3.9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/python/3.9/Dockerfile -------------------------------------------------------------------------------- /python/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pterodactyl/yolks/HEAD/python/entrypoint.sh --------------------------------------------------------------------------------