├── .github ├── ISSUE_TEMPLATE │ ├── making-a-question.md │ └── reporting-a-bug.md └── workflows │ ├── docker-image.yml │ └── docker-images.yml ├── EGGS └── egg-plutonium-t6.json ├── IMAGES ├── ptero-dotnet │ ├── dockerfile │ └── entrypoint.sh ├── ptero-plutonium │ ├── checkupdater.sh │ ├── dockerfile │ └── entrypoint.sh └── ptero-wine │ ├── dockerfile │ ├── entrypoint.sh │ └── installwine.sh ├── INSTALLING.md ├── LICENSE.md └── README.md /.github/ISSUE_TEMPLATE/making-a-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryCraft/ptero-plutonium/HEAD/.github/ISSUE_TEMPLATE/making-a-question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/reporting-a-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryCraft/ptero-plutonium/HEAD/.github/ISSUE_TEMPLATE/reporting-a-bug.md -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryCraft/ptero-plutonium/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.github/workflows/docker-images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryCraft/ptero-plutonium/HEAD/.github/workflows/docker-images.yml -------------------------------------------------------------------------------- /EGGS/egg-plutonium-t6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryCraft/ptero-plutonium/HEAD/EGGS/egg-plutonium-t6.json -------------------------------------------------------------------------------- /IMAGES/ptero-dotnet/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryCraft/ptero-plutonium/HEAD/IMAGES/ptero-dotnet/dockerfile -------------------------------------------------------------------------------- /IMAGES/ptero-dotnet/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryCraft/ptero-plutonium/HEAD/IMAGES/ptero-dotnet/entrypoint.sh -------------------------------------------------------------------------------- /IMAGES/ptero-plutonium/checkupdater.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryCraft/ptero-plutonium/HEAD/IMAGES/ptero-plutonium/checkupdater.sh -------------------------------------------------------------------------------- /IMAGES/ptero-plutonium/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryCraft/ptero-plutonium/HEAD/IMAGES/ptero-plutonium/dockerfile -------------------------------------------------------------------------------- /IMAGES/ptero-plutonium/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryCraft/ptero-plutonium/HEAD/IMAGES/ptero-plutonium/entrypoint.sh -------------------------------------------------------------------------------- /IMAGES/ptero-wine/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryCraft/ptero-plutonium/HEAD/IMAGES/ptero-wine/dockerfile -------------------------------------------------------------------------------- /IMAGES/ptero-wine/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryCraft/ptero-plutonium/HEAD/IMAGES/ptero-wine/entrypoint.sh -------------------------------------------------------------------------------- /IMAGES/ptero-wine/installwine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryCraft/ptero-plutonium/HEAD/IMAGES/ptero-wine/installwine.sh -------------------------------------------------------------------------------- /INSTALLING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryCraft/ptero-plutonium/HEAD/INSTALLING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryCraft/ptero-plutonium/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaryCraft/ptero-plutonium/HEAD/README.md --------------------------------------------------------------------------------