mirror of
https://github.com/octoleo/docker-joomla.git
synced 2024-11-10 14:30:55 +00:00
#25 | Allow skipping remote database server requirements.
This commit is contained in:
parent
6b3b317e26
commit
4fbca103e1
@ -1,6 +1,9 @@
|
||||
FROM php:7.0-apache
|
||||
MAINTAINER Michael Babker <michael.babker@joomla.org> (@mbabker)
|
||||
|
||||
# Disable remote database security requirements.
|
||||
ENV JOOMLA_INSTALLATION_DISABLE_LOCALHOST_CHECK=1
|
||||
|
||||
# Enable Apache Rewrite Module
|
||||
RUN a2enmod rewrite
|
||||
|
||||
|
@ -1,6 +1,9 @@
|
||||
FROM php:5.6-apache
|
||||
MAINTAINER Michael Babker <michael.babker@joomla.org> (@mbabker)
|
||||
|
||||
# Disable remote database security requirements.
|
||||
ENV JOOMLA_INSTALLATION_DISABLE_LOCALHOST_CHECK=1
|
||||
|
||||
# Enable Apache Rewrite Module
|
||||
RUN a2enmod rewrite
|
||||
|
||||
|
@ -1,6 +1,9 @@
|
||||
FROM php:7.0-fpm
|
||||
MAINTAINER Michael Babker <michael.babker@joomla.org> (@mbabker)
|
||||
|
||||
# Disable remote database security requirements.
|
||||
ENV JOOMLA_INSTALLATION_DISABLE_LOCALHOST_CHECK=1
|
||||
|
||||
# Install PHP extensions
|
||||
RUN apt-get update && apt-get install -y libpng12-dev libjpeg-dev libmcrypt-dev zip unzip && rm -rf /var/lib/apt/lists/* \
|
||||
&& docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr \
|
||||
|
@ -1,6 +1,9 @@
|
||||
FROM php:5.6-fpm
|
||||
MAINTAINER Michael Babker <michael.babker@joomla.org> (@mbabker)
|
||||
|
||||
# Disable remote database security requirements.
|
||||
ENV JOOMLA_INSTALLATION_DISABLE_LOCALHOST_CHECK=1
|
||||
|
||||
# Install PHP extensions
|
||||
RUN apt-get update && apt-get install -y libpng12-dev libjpeg-dev libmcrypt-dev zip unzip && rm -rf /var/lib/apt/lists/* \
|
||||
&& docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr \
|
||||
|
Loading…
Reference in New Issue
Block a user