├── .editorconfig ├── .github ├── CODEOWNERS ├── MEDIA │ └── DockerImagePterodactyl.PNG └── workflows │ ├── git.yml │ ├── publish_edge_images.yml │ └── publish_images.yml ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── commitlint.config.js └── eggs ├── caddy-php ├── README.md ├── config │ ├── caddy │ │ ├── .env │ │ └── Caddyfile │ ├── php │ │ ├── fpm.conf │ │ ├── php.ini │ │ └── www.conf │ ├── prestart.sh │ └── start.sh ├── egg-caddy-php.json └── image │ ├── 7.2 │ └── Dockerfile │ ├── 7.2_composer1 │ └── Dockerfile │ ├── 7.3 │ └── Dockerfile │ ├── 7.3_composer1 │ └── Dockerfile │ ├── 7.4 │ └── Dockerfile │ ├── 7.4_composer1 │ └── Dockerfile │ ├── 8.0 │ └── Dockerfile │ ├── 8.0_composer1 │ └── Dockerfile │ ├── 8.1 │ └── Dockerfile │ ├── 8.1_composer1 │ └── Dockerfile │ └── entrypoint.sh ├── caddy ├── README.md ├── config │ ├── .env │ └── Caddyfile └── egg-caddy.json ├── grafana-image-renderer ├── README.md ├── config.json ├── egg-grafana-image-renderer.json └── image │ ├── Dockerfile │ └── entrypoint.sh ├── jojo-discord-bot ├── README.md ├── image │ ├── edge │ │ └── Dockerfile │ ├── entrypoint.sh │ └── stable │ │ └── Dockerfile └── jojo-discord-bot.json └── mariadb-openssl ├── README.md ├── egg-maria-d-b-with-open-s-s-l.json ├── install.my.cnf └── my.cnf /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/MEDIA/DockerImagePterodactyl.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/.github/MEDIA/DockerImagePterodactyl.PNG -------------------------------------------------------------------------------- /.github/workflows/git.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/.github/workflows/git.yml -------------------------------------------------------------------------------- /.github/workflows/publish_edge_images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/.github/workflows/publish_edge_images.yml -------------------------------------------------------------------------------- /.github/workflows/publish_images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/.github/workflows/publish_images.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Ingore IDE 2 | 3 | .vscode/ 4 | .idea/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/SECURITY.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /eggs/caddy-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/caddy-php/README.md -------------------------------------------------------------------------------- /eggs/caddy-php/config/caddy/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/caddy-php/config/caddy/.env -------------------------------------------------------------------------------- /eggs/caddy-php/config/caddy/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/caddy-php/config/caddy/Caddyfile -------------------------------------------------------------------------------- /eggs/caddy-php/config/php/fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/caddy-php/config/php/fpm.conf -------------------------------------------------------------------------------- /eggs/caddy-php/config/php/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/caddy-php/config/php/php.ini -------------------------------------------------------------------------------- /eggs/caddy-php/config/php/www.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/caddy-php/config/php/www.conf -------------------------------------------------------------------------------- /eggs/caddy-php/config/prestart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/caddy-php/config/prestart.sh -------------------------------------------------------------------------------- /eggs/caddy-php/config/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/caddy-php/config/start.sh -------------------------------------------------------------------------------- /eggs/caddy-php/egg-caddy-php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/caddy-php/egg-caddy-php.json -------------------------------------------------------------------------------- /eggs/caddy-php/image/7.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/caddy-php/image/7.2/Dockerfile -------------------------------------------------------------------------------- /eggs/caddy-php/image/7.2_composer1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/caddy-php/image/7.2_composer1/Dockerfile -------------------------------------------------------------------------------- /eggs/caddy-php/image/7.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/caddy-php/image/7.3/Dockerfile -------------------------------------------------------------------------------- /eggs/caddy-php/image/7.3_composer1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/caddy-php/image/7.3_composer1/Dockerfile -------------------------------------------------------------------------------- /eggs/caddy-php/image/7.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/caddy-php/image/7.4/Dockerfile -------------------------------------------------------------------------------- /eggs/caddy-php/image/7.4_composer1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/caddy-php/image/7.4_composer1/Dockerfile -------------------------------------------------------------------------------- /eggs/caddy-php/image/8.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/caddy-php/image/8.0/Dockerfile -------------------------------------------------------------------------------- /eggs/caddy-php/image/8.0_composer1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/caddy-php/image/8.0_composer1/Dockerfile -------------------------------------------------------------------------------- /eggs/caddy-php/image/8.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/caddy-php/image/8.1/Dockerfile -------------------------------------------------------------------------------- /eggs/caddy-php/image/8.1_composer1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/caddy-php/image/8.1_composer1/Dockerfile -------------------------------------------------------------------------------- /eggs/caddy-php/image/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/caddy-php/image/entrypoint.sh -------------------------------------------------------------------------------- /eggs/caddy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/caddy/README.md -------------------------------------------------------------------------------- /eggs/caddy/config/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/caddy/config/.env -------------------------------------------------------------------------------- /eggs/caddy/config/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/caddy/config/Caddyfile -------------------------------------------------------------------------------- /eggs/caddy/egg-caddy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/caddy/egg-caddy.json -------------------------------------------------------------------------------- /eggs/grafana-image-renderer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/grafana-image-renderer/README.md -------------------------------------------------------------------------------- /eggs/grafana-image-renderer/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/grafana-image-renderer/config.json -------------------------------------------------------------------------------- /eggs/grafana-image-renderer/egg-grafana-image-renderer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/grafana-image-renderer/egg-grafana-image-renderer.json -------------------------------------------------------------------------------- /eggs/grafana-image-renderer/image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/grafana-image-renderer/image/Dockerfile -------------------------------------------------------------------------------- /eggs/grafana-image-renderer/image/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/grafana-image-renderer/image/entrypoint.sh -------------------------------------------------------------------------------- /eggs/jojo-discord-bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/jojo-discord-bot/README.md -------------------------------------------------------------------------------- /eggs/jojo-discord-bot/image/edge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/jojo-discord-bot/image/edge/Dockerfile -------------------------------------------------------------------------------- /eggs/jojo-discord-bot/image/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/jojo-discord-bot/image/entrypoint.sh -------------------------------------------------------------------------------- /eggs/jojo-discord-bot/image/stable/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/jojo-discord-bot/image/stable/Dockerfile -------------------------------------------------------------------------------- /eggs/jojo-discord-bot/jojo-discord-bot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/jojo-discord-bot/jojo-discord-bot.json -------------------------------------------------------------------------------- /eggs/mariadb-openssl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/mariadb-openssl/README.md -------------------------------------------------------------------------------- /eggs/mariadb-openssl/egg-maria-d-b-with-open-s-s-l.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/mariadb-openssl/egg-maria-d-b-with-open-s-s-l.json -------------------------------------------------------------------------------- /eggs/mariadb-openssl/install.my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/mariadb-openssl/install.my.cnf -------------------------------------------------------------------------------- /eggs/mariadb-openssl/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybytez/custom-eggs/HEAD/eggs/mariadb-openssl/my.cnf --------------------------------------------------------------------------------