ARG BASE_IMAGE FROM $BASE_IMAGE ENV EXTENSION_KEY "{{EXTENSION_KEY}}" ENV DDEV_SITENAME "{{DDEV_SITENAME}}" ENV GITHUB_URL "{{GITHUB_URL}}" # Remove default Apache index.html and create PHP-based landing page RUN rm -f /var/www/html/index.html RUN cat > /var/www/html/index.php << 'PHPEOF' EXT:{{EXTENSION_KEY}} - DDEV Environment

🚀 EXT:{{EXTENSION_KEY}} Development Environment

🌿 @ 🌿 @ | 🔀 PR #

📚 Documentation

View the extension documentation (run ddev docs to render):

View Documentation

🌐 TYPO3 Environments

TYPO3 11.5 LTS
TYPO3 12.4 LTS
TYPO3 13.4 LTS

🔑 Backend Credentials

⚙️ Quick Commands

PHPEOF RUN mkdir -p /var/www/html/v11/public/typo3 RUN echo "

Perform this first

ddev install-v11" > /var/www/html/v11/public/index.html RUN echo "

Perform this first

ddev install-v11" > /var/www/html/v11/public/typo3/index.html RUN mkdir -p /var/www/html/v12/public/typo3 RUN echo "

Perform this first

ddev install-v12" > /var/www/html/v12/public/index.html RUN echo "

Perform this first

ddev install-v12" > /var/www/html/v12/public/typo3/index.html RUN mkdir -p /var/www/html/v13/public/typo3 RUN echo "

Perform this first

ddev install-v13" > /var/www/html/v13/public/index.html RUN echo "

Perform this first

ddev install-v13" > /var/www/html/v13/public/typo3/index.html ARG uid ARG gid RUN chown -R $uid:$gid /var/www/html