├── .editorconfig ├── .gitattributes ├── .github ├── pull_request_template.md └── workflows │ ├── apps.yml │ ├── base.yml │ ├── bot.yml │ ├── box64.yml │ ├── bun.yml │ ├── cassandra.yml │ ├── dart.yml │ ├── dotnet.yml │ ├── elixir.yml │ ├── erlang.yml │ ├── games.yml │ ├── go.yml │ ├── installers.yml │ ├── java.yml │ ├── mariadb.yml │ ├── mongodb.yml │ ├── mono.yml │ ├── nodejs.yml │ ├── postgres.yml │ ├── python.yml │ ├── redis.yml │ ├── rust.yml │ ├── steamcmd.yml │ ├── voice.yml │ └── wine.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── apps └── uptimekuma │ ├── Dockerfile │ └── entrypoint.sh ├── bot ├── bastion │ ├── Dockerfile │ └── entrypoint.sh ├── parkertron │ ├── Dockerfile │ └── entrypoint.sh ├── red │ ├── Dockerfile │ └── entrypoint.sh └── sinusbot │ ├── Dockerfile │ └── entrypoint.sh ├── box64 ├── Dockerfile └── entrypoint.sh ├── bun ├── canary │ └── Dockerfile ├── entrypoint.sh └── latest │ └── Dockerfile ├── cassandra ├── entrypoint.sh ├── java11_python3 │ └── Dockerfile └── java8_python2 │ └── Dockerfile ├── dart ├── 2.17 │ └── Dockerfile ├── 2.18 │ └── Dockerfile ├── 2.19 │ └── Dockerfile ├── 3.3 │ └── Dockerfile ├── entrypoint.sh └── stable │ └── Dockerfile ├── dotnet ├── 5 │ └── Dockerfile ├── 6 │ └── Dockerfile ├── 7 │ └── Dockerfile ├── 8 │ └── Dockerfile ├── 9 │ └── Dockerfile ├── 10 │ └── Dockerfile ├── 2.1 │ └── Dockerfile ├── 3.1 │ └── Dockerfile └── entrypoint.sh ├── elixir ├── 1.12 │ └── Dockerfile ├── 1.13 │ └── Dockerfile ├── 1.14 │ └── Dockerfile ├── 1.15 │ └── Dockerfile ├── entrypoint.sh └── latest │ └── Dockerfile ├── erlang ├── 22 │ └── Dockerfile ├── 23 │ └── Dockerfile ├── 24 │ └── Dockerfile ├── 25 │ └── Dockerfile ├── 26 │ └── Dockerfile └── entrypoint.sh ├── games ├── altv │ ├── Dockerfile │ └── entrypoint.sh ├── arma3 │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── entrypoint.sh │ └── passwd.template ├── dayz │ ├── Dockerfile │ ├── README.md │ ├── entrypoint.sh │ └── passwd.template ├── minetest │ ├── Dockerfile │ └── entrypoint.sh ├── mohaa │ ├── Dockerfile │ └── entrypoint.sh ├── mta │ ├── Dockerfile │ └── entrypoint.sh ├── rust │ ├── Dockerfile │ ├── entrypoint.sh │ └── wrapper.js ├── samp │ ├── Dockerfile │ └── entrypoint.sh ├── source │ ├── Dockerfile │ └── entrypoint.sh ├── thebattleforwesnoth │ ├── Dockerfile │ └── entrypoint.sh ├── valheim │ ├── Dockerfile │ ├── entrypoint.sh │ └── passwd.template └── zandronum │ ├── Dockerfile │ └── entrypoint.sh ├── go ├── 1.14 │ └── Dockerfile ├── 1.15 │ └── Dockerfile ├── 1.16 │ └── Dockerfile ├── 1.17 │ └── Dockerfile ├── 1.18 │ └── Dockerfile ├── 1.19 │ └── Dockerfile ├── 1.20 │ └── Dockerfile ├── 1.21 │ └── Dockerfile ├── 1.22 │ └── Dockerfile ├── 1.23 │ └── Dockerfile └── entrypoint.sh ├── installers ├── alpine │ └── Dockerfile ├── debian │ └── Dockerfile ├── java_11 │ └── Dockerfile ├── java_17 │ └── Dockerfile ├── java_21 │ └── Dockerfile ├── java_25 │ └── Dockerfile ├── java_8 │ └── Dockerfile └── ubuntu │ └── Dockerfile ├── java ├── 8 │ └── Dockerfile ├── 11 │ └── Dockerfile ├── 16 │ └── Dockerfile ├── 17 │ └── Dockerfile ├── 19 │ └── Dockerfile ├── 21 │ └── Dockerfile ├── 22 │ └── Dockerfile ├── 25 │ └── Dockerfile ├── 11j9 │ └── Dockerfile ├── 16j9 │ └── Dockerfile ├── 8j9 │ └── Dockerfile └── entrypoint.sh ├── mariadb ├── 10.3 │ └── Dockerfile ├── 10.4 │ └── Dockerfile ├── 10.5 │ └── Dockerfile ├── 10.6 │ └── Dockerfile ├── 10.7 │ └── Dockerfile ├── 11.2 │ └── Dockerfile ├── 11.3 │ └── Dockerfile ├── 11.4 │ └── Dockerfile ├── 11.5 │ └── Dockerfile ├── 11.6 │ └── Dockerfile └── entrypoint.sh ├── mongodb ├── 5 │ └── Dockerfile ├── 6 │ └── Dockerfile ├── 7 │ └── Dockerfile ├── 8 │ └── Dockerfile └── entrypoint.sh ├── mono ├── entrypoint.sh └── latest │ └── Dockerfile ├── nodejs ├── 12 │ └── Dockerfile ├── 14 │ └── Dockerfile ├── 16 │ └── Dockerfile ├── 17 │ └── Dockerfile ├── 18 │ └── Dockerfile ├── 19 │ └── Dockerfile ├── 20 │ └── Dockerfile ├── 21 │ └── Dockerfile ├── 22 │ └── Dockerfile ├── 23 │ └── Dockerfile ├── 24 │ └── Dockerfile └── entrypoint.sh ├── oses ├── alpine │ ├── Dockerfile │ └── entrypoint.sh ├── debian │ ├── Dockerfile │ └── entrypoint.sh └── ubuntu │ ├── Dockerfile │ └── entrypoint.sh ├── postgres ├── 9 │ └── Dockerfile ├── 10 │ └── Dockerfile ├── 11 │ └── Dockerfile ├── 12 │ └── Dockerfile ├── 13 │ └── Dockerfile ├── 14 │ └── Dockerfile ├── 16 │ └── Dockerfile ├── 17 │ └── Dockerfile ├── 18 │ └── Dockerfile └── entrypoint.sh ├── python ├── 2.7 │ └── Dockerfile ├── 3.10 │ └── Dockerfile ├── 3.11 │ └── Dockerfile ├── 3.12 │ └── Dockerfile ├── 3.13 │ └── Dockerfile ├── 3.14 │ └── Dockerfile ├── 3.7 │ └── Dockerfile ├── 3.8 │ └── Dockerfile ├── 3.9 │ └── Dockerfile └── entrypoint.sh ├── redis ├── 5 │ └── Dockerfile ├── 6 │ └── Dockerfile ├── 7 │ └── Dockerfile ├── 8 │ └── Dockerfile └── entrypoint.sh ├── rust ├── 1.56 │ └── Dockerfile ├── 1.60 │ └── Dockerfile ├── entrypoint.sh └── latest │ └── Dockerfile ├── steamcmd ├── debian │ └── Dockerfile ├── dotnet │ └── Dockerfile ├── entrypoint.sh ├── proton │ └── Dockerfile ├── proton_8 │ └── Dockerfile ├── sniper │ └── Dockerfile └── ubuntu │ └── Dockerfile ├── voice ├── mumble │ ├── Dockerfile │ └── entrypoint.sh └── teaspeak │ ├── Dockerfile │ └── entrypoint.sh └── wine ├── 7 └── Dockerfile ├── 8 └── Dockerfile ├── 9 └── Dockerfile ├── 10 └── Dockerfile ├── devel └── Dockerfile ├── entrypoint.sh ├── latest └── Dockerfile └── staging └── Dockerfile /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/apps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/apps.yml -------------------------------------------------------------------------------- /.github/workflows/base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/base.yml -------------------------------------------------------------------------------- /.github/workflows/bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/bot.yml -------------------------------------------------------------------------------- /.github/workflows/box64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/box64.yml -------------------------------------------------------------------------------- /.github/workflows/bun.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/bun.yml -------------------------------------------------------------------------------- /.github/workflows/cassandra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/cassandra.yml -------------------------------------------------------------------------------- /.github/workflows/dart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/dart.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.github/workflows/elixir.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/elixir.yml -------------------------------------------------------------------------------- /.github/workflows/erlang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/erlang.yml -------------------------------------------------------------------------------- /.github/workflows/games.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/games.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/installers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/installers.yml -------------------------------------------------------------------------------- /.github/workflows/java.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/java.yml -------------------------------------------------------------------------------- /.github/workflows/mariadb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/mariadb.yml -------------------------------------------------------------------------------- /.github/workflows/mongodb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/mongodb.yml -------------------------------------------------------------------------------- /.github/workflows/mono.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/mono.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.github/workflows/postgres.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/postgres.yml -------------------------------------------------------------------------------- /.github/workflows/python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/python.yml -------------------------------------------------------------------------------- /.github/workflows/redis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/redis.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.github/workflows/steamcmd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/steamcmd.yml -------------------------------------------------------------------------------- /.github/workflows/voice.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/voice.yml -------------------------------------------------------------------------------- /.github/workflows/wine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/.github/workflows/wine.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/README.md -------------------------------------------------------------------------------- /apps/uptimekuma/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/apps/uptimekuma/Dockerfile -------------------------------------------------------------------------------- /apps/uptimekuma/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/apps/uptimekuma/entrypoint.sh -------------------------------------------------------------------------------- /bot/bastion/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/bot/bastion/Dockerfile -------------------------------------------------------------------------------- /bot/bastion/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/bot/bastion/entrypoint.sh -------------------------------------------------------------------------------- /bot/parkertron/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/bot/parkertron/Dockerfile -------------------------------------------------------------------------------- /bot/parkertron/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/bot/parkertron/entrypoint.sh -------------------------------------------------------------------------------- /bot/red/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/bot/red/Dockerfile -------------------------------------------------------------------------------- /bot/red/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/bot/red/entrypoint.sh -------------------------------------------------------------------------------- /bot/sinusbot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/bot/sinusbot/Dockerfile -------------------------------------------------------------------------------- /bot/sinusbot/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/bot/sinusbot/entrypoint.sh -------------------------------------------------------------------------------- /box64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/box64/Dockerfile -------------------------------------------------------------------------------- /box64/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/box64/entrypoint.sh -------------------------------------------------------------------------------- /bun/canary/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/bun/canary/Dockerfile -------------------------------------------------------------------------------- /bun/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/bun/entrypoint.sh -------------------------------------------------------------------------------- /bun/latest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/bun/latest/Dockerfile -------------------------------------------------------------------------------- /cassandra/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/cassandra/entrypoint.sh -------------------------------------------------------------------------------- /cassandra/java11_python3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/cassandra/java11_python3/Dockerfile -------------------------------------------------------------------------------- /cassandra/java8_python2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/cassandra/java8_python2/Dockerfile -------------------------------------------------------------------------------- /dart/2.17/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/dart/2.17/Dockerfile -------------------------------------------------------------------------------- /dart/2.18/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/dart/2.18/Dockerfile -------------------------------------------------------------------------------- /dart/2.19/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/dart/2.19/Dockerfile -------------------------------------------------------------------------------- /dart/3.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/dart/3.3/Dockerfile -------------------------------------------------------------------------------- /dart/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/dart/entrypoint.sh -------------------------------------------------------------------------------- /dart/stable/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/dart/stable/Dockerfile -------------------------------------------------------------------------------- /dotnet/10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/dotnet/10/Dockerfile -------------------------------------------------------------------------------- /dotnet/2.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/dotnet/2.1/Dockerfile -------------------------------------------------------------------------------- /dotnet/3.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/dotnet/3.1/Dockerfile -------------------------------------------------------------------------------- /dotnet/5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/dotnet/5/Dockerfile -------------------------------------------------------------------------------- /dotnet/6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/dotnet/6/Dockerfile -------------------------------------------------------------------------------- /dotnet/7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/dotnet/7/Dockerfile -------------------------------------------------------------------------------- /dotnet/8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/dotnet/8/Dockerfile -------------------------------------------------------------------------------- /dotnet/9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/dotnet/9/Dockerfile -------------------------------------------------------------------------------- /dotnet/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/dotnet/entrypoint.sh -------------------------------------------------------------------------------- /elixir/1.12/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/elixir/1.12/Dockerfile -------------------------------------------------------------------------------- /elixir/1.13/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/elixir/1.13/Dockerfile -------------------------------------------------------------------------------- /elixir/1.14/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/elixir/1.14/Dockerfile -------------------------------------------------------------------------------- /elixir/1.15/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/elixir/1.15/Dockerfile -------------------------------------------------------------------------------- /elixir/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/elixir/entrypoint.sh -------------------------------------------------------------------------------- /elixir/latest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/elixir/latest/Dockerfile -------------------------------------------------------------------------------- /erlang/22/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/erlang/22/Dockerfile -------------------------------------------------------------------------------- /erlang/23/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/erlang/23/Dockerfile -------------------------------------------------------------------------------- /erlang/24/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/erlang/24/Dockerfile -------------------------------------------------------------------------------- /erlang/25/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/erlang/25/Dockerfile -------------------------------------------------------------------------------- /erlang/26/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/erlang/26/Dockerfile -------------------------------------------------------------------------------- /erlang/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/erlang/entrypoint.sh -------------------------------------------------------------------------------- /games/altv/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/altv/Dockerfile -------------------------------------------------------------------------------- /games/altv/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/altv/entrypoint.sh -------------------------------------------------------------------------------- /games/arma3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/arma3/Dockerfile -------------------------------------------------------------------------------- /games/arma3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/arma3/LICENSE -------------------------------------------------------------------------------- /games/arma3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/arma3/README.md -------------------------------------------------------------------------------- /games/arma3/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/arma3/entrypoint.sh -------------------------------------------------------------------------------- /games/arma3/passwd.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/arma3/passwd.template -------------------------------------------------------------------------------- /games/dayz/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/dayz/Dockerfile -------------------------------------------------------------------------------- /games/dayz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/dayz/README.md -------------------------------------------------------------------------------- /games/dayz/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/dayz/entrypoint.sh -------------------------------------------------------------------------------- /games/dayz/passwd.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/dayz/passwd.template -------------------------------------------------------------------------------- /games/minetest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/minetest/Dockerfile -------------------------------------------------------------------------------- /games/minetest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/minetest/entrypoint.sh -------------------------------------------------------------------------------- /games/mohaa/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/mohaa/Dockerfile -------------------------------------------------------------------------------- /games/mohaa/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/mohaa/entrypoint.sh -------------------------------------------------------------------------------- /games/mta/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/mta/Dockerfile -------------------------------------------------------------------------------- /games/mta/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/mta/entrypoint.sh -------------------------------------------------------------------------------- /games/rust/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/rust/Dockerfile -------------------------------------------------------------------------------- /games/rust/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/rust/entrypoint.sh -------------------------------------------------------------------------------- /games/rust/wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/rust/wrapper.js -------------------------------------------------------------------------------- /games/samp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/samp/Dockerfile -------------------------------------------------------------------------------- /games/samp/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/samp/entrypoint.sh -------------------------------------------------------------------------------- /games/source/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/source/Dockerfile -------------------------------------------------------------------------------- /games/source/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/source/entrypoint.sh -------------------------------------------------------------------------------- /games/thebattleforwesnoth/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/thebattleforwesnoth/Dockerfile -------------------------------------------------------------------------------- /games/thebattleforwesnoth/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/thebattleforwesnoth/entrypoint.sh -------------------------------------------------------------------------------- /games/valheim/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/valheim/Dockerfile -------------------------------------------------------------------------------- /games/valheim/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/valheim/entrypoint.sh -------------------------------------------------------------------------------- /games/valheim/passwd.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/valheim/passwd.template -------------------------------------------------------------------------------- /games/zandronum/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/zandronum/Dockerfile -------------------------------------------------------------------------------- /games/zandronum/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/games/zandronum/entrypoint.sh -------------------------------------------------------------------------------- /go/1.14/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/go/1.14/Dockerfile -------------------------------------------------------------------------------- /go/1.15/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/go/1.15/Dockerfile -------------------------------------------------------------------------------- /go/1.16/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/go/1.16/Dockerfile -------------------------------------------------------------------------------- /go/1.17/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/go/1.17/Dockerfile -------------------------------------------------------------------------------- /go/1.18/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/go/1.18/Dockerfile -------------------------------------------------------------------------------- /go/1.19/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/go/1.19/Dockerfile -------------------------------------------------------------------------------- /go/1.20/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/go/1.20/Dockerfile -------------------------------------------------------------------------------- /go/1.21/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/go/1.21/Dockerfile -------------------------------------------------------------------------------- /go/1.22/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/go/1.22/Dockerfile -------------------------------------------------------------------------------- /go/1.23/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/go/1.23/Dockerfile -------------------------------------------------------------------------------- /go/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/go/entrypoint.sh -------------------------------------------------------------------------------- /installers/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/installers/alpine/Dockerfile -------------------------------------------------------------------------------- /installers/debian/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/installers/debian/Dockerfile -------------------------------------------------------------------------------- /installers/java_11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/installers/java_11/Dockerfile -------------------------------------------------------------------------------- /installers/java_17/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/installers/java_17/Dockerfile -------------------------------------------------------------------------------- /installers/java_21/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/installers/java_21/Dockerfile -------------------------------------------------------------------------------- /installers/java_25/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/installers/java_25/Dockerfile -------------------------------------------------------------------------------- /installers/java_8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/installers/java_8/Dockerfile -------------------------------------------------------------------------------- /installers/ubuntu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/installers/ubuntu/Dockerfile -------------------------------------------------------------------------------- /java/11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/java/11/Dockerfile -------------------------------------------------------------------------------- /java/11j9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/java/11j9/Dockerfile -------------------------------------------------------------------------------- /java/16/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/java/16/Dockerfile -------------------------------------------------------------------------------- /java/16j9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/java/16j9/Dockerfile -------------------------------------------------------------------------------- /java/17/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/java/17/Dockerfile -------------------------------------------------------------------------------- /java/19/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/java/19/Dockerfile -------------------------------------------------------------------------------- /java/21/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/java/21/Dockerfile -------------------------------------------------------------------------------- /java/22/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/java/22/Dockerfile -------------------------------------------------------------------------------- /java/25/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/java/25/Dockerfile -------------------------------------------------------------------------------- /java/8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/java/8/Dockerfile -------------------------------------------------------------------------------- /java/8j9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/java/8j9/Dockerfile -------------------------------------------------------------------------------- /java/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/java/entrypoint.sh -------------------------------------------------------------------------------- /mariadb/10.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/mariadb/10.3/Dockerfile -------------------------------------------------------------------------------- /mariadb/10.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/mariadb/10.4/Dockerfile -------------------------------------------------------------------------------- /mariadb/10.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/mariadb/10.5/Dockerfile -------------------------------------------------------------------------------- /mariadb/10.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/mariadb/10.6/Dockerfile -------------------------------------------------------------------------------- /mariadb/10.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/mariadb/10.7/Dockerfile -------------------------------------------------------------------------------- /mariadb/11.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/mariadb/11.2/Dockerfile -------------------------------------------------------------------------------- /mariadb/11.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/mariadb/11.3/Dockerfile -------------------------------------------------------------------------------- /mariadb/11.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/mariadb/11.4/Dockerfile -------------------------------------------------------------------------------- /mariadb/11.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/mariadb/11.5/Dockerfile -------------------------------------------------------------------------------- /mariadb/11.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/mariadb/11.6/Dockerfile -------------------------------------------------------------------------------- /mariadb/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/mariadb/entrypoint.sh -------------------------------------------------------------------------------- /mongodb/5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/mongodb/5/Dockerfile -------------------------------------------------------------------------------- /mongodb/6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/mongodb/6/Dockerfile -------------------------------------------------------------------------------- /mongodb/7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/mongodb/7/Dockerfile -------------------------------------------------------------------------------- /mongodb/8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/mongodb/8/Dockerfile -------------------------------------------------------------------------------- /mongodb/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/mongodb/entrypoint.sh -------------------------------------------------------------------------------- /mono/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/mono/entrypoint.sh -------------------------------------------------------------------------------- /mono/latest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/mono/latest/Dockerfile -------------------------------------------------------------------------------- /nodejs/12/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/nodejs/12/Dockerfile -------------------------------------------------------------------------------- /nodejs/14/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/nodejs/14/Dockerfile -------------------------------------------------------------------------------- /nodejs/16/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/nodejs/16/Dockerfile -------------------------------------------------------------------------------- /nodejs/17/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/nodejs/17/Dockerfile -------------------------------------------------------------------------------- /nodejs/18/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/nodejs/18/Dockerfile -------------------------------------------------------------------------------- /nodejs/19/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/nodejs/19/Dockerfile -------------------------------------------------------------------------------- /nodejs/20/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/nodejs/20/Dockerfile -------------------------------------------------------------------------------- /nodejs/21/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/nodejs/21/Dockerfile -------------------------------------------------------------------------------- /nodejs/22/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/nodejs/22/Dockerfile -------------------------------------------------------------------------------- /nodejs/23/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/nodejs/23/Dockerfile -------------------------------------------------------------------------------- /nodejs/24/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/nodejs/24/Dockerfile -------------------------------------------------------------------------------- /nodejs/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/nodejs/entrypoint.sh -------------------------------------------------------------------------------- /oses/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/oses/alpine/Dockerfile -------------------------------------------------------------------------------- /oses/alpine/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/oses/alpine/entrypoint.sh -------------------------------------------------------------------------------- /oses/debian/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/oses/debian/Dockerfile -------------------------------------------------------------------------------- /oses/debian/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/oses/debian/entrypoint.sh -------------------------------------------------------------------------------- /oses/ubuntu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/oses/ubuntu/Dockerfile -------------------------------------------------------------------------------- /oses/ubuntu/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/oses/ubuntu/entrypoint.sh -------------------------------------------------------------------------------- /postgres/10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/postgres/10/Dockerfile -------------------------------------------------------------------------------- /postgres/11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/postgres/11/Dockerfile -------------------------------------------------------------------------------- /postgres/12/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/postgres/12/Dockerfile -------------------------------------------------------------------------------- /postgres/13/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/postgres/13/Dockerfile -------------------------------------------------------------------------------- /postgres/14/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/postgres/14/Dockerfile -------------------------------------------------------------------------------- /postgres/16/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/postgres/16/Dockerfile -------------------------------------------------------------------------------- /postgres/17/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/postgres/17/Dockerfile -------------------------------------------------------------------------------- /postgres/18/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/postgres/18/Dockerfile -------------------------------------------------------------------------------- /postgres/9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/postgres/9/Dockerfile -------------------------------------------------------------------------------- /postgres/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/postgres/entrypoint.sh -------------------------------------------------------------------------------- /python/2.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/python/2.7/Dockerfile -------------------------------------------------------------------------------- /python/3.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/python/3.10/Dockerfile -------------------------------------------------------------------------------- /python/3.11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/python/3.11/Dockerfile -------------------------------------------------------------------------------- /python/3.12/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/python/3.12/Dockerfile -------------------------------------------------------------------------------- /python/3.13/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/python/3.13/Dockerfile -------------------------------------------------------------------------------- /python/3.14/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/python/3.14/Dockerfile -------------------------------------------------------------------------------- /python/3.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/python/3.7/Dockerfile -------------------------------------------------------------------------------- /python/3.8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/python/3.8/Dockerfile -------------------------------------------------------------------------------- /python/3.9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/python/3.9/Dockerfile -------------------------------------------------------------------------------- /python/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/python/entrypoint.sh -------------------------------------------------------------------------------- /redis/5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/redis/5/Dockerfile -------------------------------------------------------------------------------- /redis/6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/redis/6/Dockerfile -------------------------------------------------------------------------------- /redis/7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/redis/7/Dockerfile -------------------------------------------------------------------------------- /redis/8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/redis/8/Dockerfile -------------------------------------------------------------------------------- /redis/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/redis/entrypoint.sh -------------------------------------------------------------------------------- /rust/1.56/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/rust/1.56/Dockerfile -------------------------------------------------------------------------------- /rust/1.60/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/rust/1.60/Dockerfile -------------------------------------------------------------------------------- /rust/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/rust/entrypoint.sh -------------------------------------------------------------------------------- /rust/latest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/rust/latest/Dockerfile -------------------------------------------------------------------------------- /steamcmd/debian/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/steamcmd/debian/Dockerfile -------------------------------------------------------------------------------- /steamcmd/dotnet/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/steamcmd/dotnet/Dockerfile -------------------------------------------------------------------------------- /steamcmd/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/steamcmd/entrypoint.sh -------------------------------------------------------------------------------- /steamcmd/proton/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/steamcmd/proton/Dockerfile -------------------------------------------------------------------------------- /steamcmd/proton_8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/steamcmd/proton_8/Dockerfile -------------------------------------------------------------------------------- /steamcmd/sniper/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/steamcmd/sniper/Dockerfile -------------------------------------------------------------------------------- /steamcmd/ubuntu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/steamcmd/ubuntu/Dockerfile -------------------------------------------------------------------------------- /voice/mumble/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/voice/mumble/Dockerfile -------------------------------------------------------------------------------- /voice/mumble/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/voice/mumble/entrypoint.sh -------------------------------------------------------------------------------- /voice/teaspeak/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/voice/teaspeak/Dockerfile -------------------------------------------------------------------------------- /voice/teaspeak/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/voice/teaspeak/entrypoint.sh -------------------------------------------------------------------------------- /wine/10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/wine/10/Dockerfile -------------------------------------------------------------------------------- /wine/7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/wine/7/Dockerfile -------------------------------------------------------------------------------- /wine/8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/wine/8/Dockerfile -------------------------------------------------------------------------------- /wine/9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/wine/9/Dockerfile -------------------------------------------------------------------------------- /wine/devel/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/wine/devel/Dockerfile -------------------------------------------------------------------------------- /wine/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/wine/entrypoint.sh -------------------------------------------------------------------------------- /wine/latest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/wine/latest/Dockerfile -------------------------------------------------------------------------------- /wine/staging/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelican-eggs/yolks/HEAD/wine/staging/Dockerfile --------------------------------------------------------------------------------