├── .env ├── .github └── workflows │ └── Docker.yml ├── .gitignore ├── README.md ├── apache ├── ports.conf ├── security.conf ├── ssl │ ├── mycert.crt │ ├── mycert.csr │ └── mycert.key ├── vhost-ssl.conf └── vhost.conf ├── composer.json ├── crontab └── crontab ├── docker-compose.simple-install.enterprise.yml ├── docker-compose.simple-install.yml ├── docker-cron-entrypoint.sh ├── docker-entrypoint.sh ├── mysql ├── conf.d │ └── custom.cnf └── entrypoint │ └── grant.sh └── php └── php.ini /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eramba/docker/HEAD/.env -------------------------------------------------------------------------------- /.github/workflows/Docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eramba/docker/HEAD/.github/workflows/Docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eramba/docker/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eramba/docker/HEAD/README.md -------------------------------------------------------------------------------- /apache/ports.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eramba/docker/HEAD/apache/ports.conf -------------------------------------------------------------------------------- /apache/security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eramba/docker/HEAD/apache/security.conf -------------------------------------------------------------------------------- /apache/ssl/mycert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eramba/docker/HEAD/apache/ssl/mycert.crt -------------------------------------------------------------------------------- /apache/ssl/mycert.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eramba/docker/HEAD/apache/ssl/mycert.csr -------------------------------------------------------------------------------- /apache/ssl/mycert.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eramba/docker/HEAD/apache/ssl/mycert.key -------------------------------------------------------------------------------- /apache/vhost-ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eramba/docker/HEAD/apache/vhost-ssl.conf -------------------------------------------------------------------------------- /apache/vhost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eramba/docker/HEAD/apache/vhost.conf -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eramba/docker/HEAD/composer.json -------------------------------------------------------------------------------- /crontab/crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eramba/docker/HEAD/crontab/crontab -------------------------------------------------------------------------------- /docker-compose.simple-install.enterprise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eramba/docker/HEAD/docker-compose.simple-install.enterprise.yml -------------------------------------------------------------------------------- /docker-compose.simple-install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eramba/docker/HEAD/docker-compose.simple-install.yml -------------------------------------------------------------------------------- /docker-cron-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eramba/docker/HEAD/docker-cron-entrypoint.sh -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eramba/docker/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /mysql/conf.d/custom.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eramba/docker/HEAD/mysql/conf.d/custom.cnf -------------------------------------------------------------------------------- /mysql/entrypoint/grant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eramba/docker/HEAD/mysql/entrypoint/grant.sh -------------------------------------------------------------------------------- /php/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eramba/docker/HEAD/php/php.ini --------------------------------------------------------------------------------