├── .github └── workflows │ ├── build-legacy.yaml │ └── build.yaml ├── 12.4 ├── .dockerignore ├── Dockerfile ├── additional.php ├── build.sh ├── docker-compose.yaml ├── entrypoint.sh ├── podman-compose.yaml └── wait-for-it.sh ├── 13.4 ├── .dockerignore ├── Dockerfile ├── additional.php ├── build.sh ├── docker-compose.yaml ├── entrypoint.sh ├── podman-compose.yaml └── wait-for-it.sh ├── LICENSE.md ├── README.md └── legacy ├── 12.4 ├── .dockerignore ├── Dockerfile ├── additional.php ├── build.sh ├── docker-compose.yaml ├── entrypoint.sh ├── podman-compose.yaml └── wait-for-it.sh └── 13.4 ├── .dockerignore ├── Dockerfile ├── additional.php ├── build.sh ├── docker-compose.yaml ├── entrypoint.sh ├── podman-compose.yaml └── wait-for-it.sh /.github/workflows/build-legacy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/.github/workflows/build-legacy.yaml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /12.4/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/12.4/.dockerignore -------------------------------------------------------------------------------- /12.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/12.4/Dockerfile -------------------------------------------------------------------------------- /12.4/additional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/12.4/additional.php -------------------------------------------------------------------------------- /12.4/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/12.4/build.sh -------------------------------------------------------------------------------- /12.4/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/12.4/docker-compose.yaml -------------------------------------------------------------------------------- /12.4/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/12.4/entrypoint.sh -------------------------------------------------------------------------------- /12.4/podman-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/12.4/podman-compose.yaml -------------------------------------------------------------------------------- /12.4/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/12.4/wait-for-it.sh -------------------------------------------------------------------------------- /13.4/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/13.4/.dockerignore -------------------------------------------------------------------------------- /13.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/13.4/Dockerfile -------------------------------------------------------------------------------- /13.4/additional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/13.4/additional.php -------------------------------------------------------------------------------- /13.4/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/13.4/build.sh -------------------------------------------------------------------------------- /13.4/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/13.4/docker-compose.yaml -------------------------------------------------------------------------------- /13.4/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/13.4/entrypoint.sh -------------------------------------------------------------------------------- /13.4/podman-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/13.4/podman-compose.yaml -------------------------------------------------------------------------------- /13.4/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/13.4/wait-for-it.sh -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/README.md -------------------------------------------------------------------------------- /legacy/12.4/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/legacy/12.4/.dockerignore -------------------------------------------------------------------------------- /legacy/12.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/legacy/12.4/Dockerfile -------------------------------------------------------------------------------- /legacy/12.4/additional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/legacy/12.4/additional.php -------------------------------------------------------------------------------- /legacy/12.4/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/legacy/12.4/build.sh -------------------------------------------------------------------------------- /legacy/12.4/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/legacy/12.4/docker-compose.yaml -------------------------------------------------------------------------------- /legacy/12.4/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/legacy/12.4/entrypoint.sh -------------------------------------------------------------------------------- /legacy/12.4/podman-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/legacy/12.4/podman-compose.yaml -------------------------------------------------------------------------------- /legacy/12.4/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/legacy/12.4/wait-for-it.sh -------------------------------------------------------------------------------- /legacy/13.4/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/legacy/13.4/.dockerignore -------------------------------------------------------------------------------- /legacy/13.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/legacy/13.4/Dockerfile -------------------------------------------------------------------------------- /legacy/13.4/additional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/legacy/13.4/additional.php -------------------------------------------------------------------------------- /legacy/13.4/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/legacy/13.4/build.sh -------------------------------------------------------------------------------- /legacy/13.4/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/legacy/13.4/docker-compose.yaml -------------------------------------------------------------------------------- /legacy/13.4/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/legacy/13.4/entrypoint.sh -------------------------------------------------------------------------------- /legacy/13.4/podman-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/legacy/13.4/podman-compose.yaml -------------------------------------------------------------------------------- /legacy/13.4/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crinis/typo3-docker/HEAD/legacy/13.4/wait-for-it.sh --------------------------------------------------------------------------------