For converting old Joomla 1.5 into docker container. php56 apache
281
For converting old Joomla 1.5 into docker container.
Dockerfile
FROM php:5.6-apache
ENV JOOMLA_INSTALLATION_DISABLE_LOCALHOST_CHECK=1 ENV TZ=Asia/Tokyo RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone RUN printf '[Date]\ndate.timezone="%s"\n', $TZ > /usr/local/etc/php/conf.d/tzone.ini
RUN docker-php-ext-install -j $(nproc)
mysqli
pdo_mysql
opcache
;
RUN set -eux;
a2enmod rewrite expires;
VOLUME /var/www/html
CMD ["apache2-foreground"]
Content type
Image
Digest
sha256:c8c853d1c…
Size
123.8 MB
Last updated
over 2 years ago
docker pull jrandombytes/php56-apache-joomla15