ADD: divided application and configuration directory
This commit is contained in:
parent
3d76ff1ca8
commit
cd1ea8b54c
10
Dockerfile
10
Dockerfile
@ -11,12 +11,9 @@ RUN docker-php-ext-install gettext && docker-php-ext-enable gettext
|
||||
RUN docker-php-ext-install intl && docker-php-ext-enable intl
|
||||
RUN docker-php-ext-install zip && docker-php-ext-enable zip
|
||||
RUN docker-php-ext-install ldap && docker-php-ext-enable ldap
|
||||
RUN wget -O wikindx.tar.bz2 https://phoenixnap.dl.sourceforge.net/project/wikindx/6.4.9/wikindx_6.4.9.tar.bz2
|
||||
RUN tar jxf wikindx.tar.bz2
|
||||
RUN cp wikindx/config.php.dist wikindx/config.php
|
||||
|
||||
COPY create.sql .
|
||||
COPY docker-entrypoint-wikindx /usr/local/bin/
|
||||
RUN chown www-data.www-data wikindx -R
|
||||
|
||||
RUN cp /usr/local/etc/php/php.ini-production /usr/local/etc/php/php.ini
|
||||
RUN sed -i 's/post_max_size.=.*/post_max_size = 100M/' /usr/local/etc/php/php.ini
|
||||
@ -27,4 +24,9 @@ RUN echo "mysqli.default_socket = /var/run/mysqld/mysqld.sock" >> /usr/local/etc
|
||||
VOLUME ["/var/lib/mysql"]
|
||||
VOLUME ["/home/wikindx"]
|
||||
|
||||
RUN mkdir -p /home/wikindx
|
||||
WORKDIR /var/www/html
|
||||
RUN wget -O wikindx.tar.bz2 https://phoenixnap.dl.sourceforge.net/project/wikindx/6.4.9/wikindx_6.4.9.tar.bz2
|
||||
RUN tar jxf wikindx.tar.bz2
|
||||
|
||||
ENTRYPOINT ["docker-entrypoint-wikindx"]
|
||||
|
@ -7,9 +7,32 @@ if [ ! -d /var/lib/mysql/wikindx6 ] ; then
|
||||
mysql -u root < create.sql
|
||||
fi
|
||||
|
||||
if [ ! -d /var/www/html/wikindx ]; then
|
||||
mv /home/wikindx /var/www/html/
|
||||
ls /home/wikindx/
|
||||
|
||||
# for updating from old docker container
|
||||
if [ -e /home/wikindx/index.php ]; then
|
||||
echo -n "found application in config directory ..."
|
||||
mv /home/wikindx/config.php /tmp/
|
||||
rm /home/wikindx/* -rf
|
||||
mv /tmp/config.php /home/wikindx/config.php
|
||||
chown -R www-data.www-data /home/wikindx
|
||||
echo "removed"
|
||||
fi
|
||||
|
||||
# make sure a configuration file exists
|
||||
if [ ! -e /home/wikindx/config.php ]; then
|
||||
echo "no configuration file yet exist ..."
|
||||
cp /var/www/html/config.php.dist /home/wikindx/config.php
|
||||
chown -R www-data.www-data /home/wikindx
|
||||
echo "created"
|
||||
fi
|
||||
|
||||
# make sure configuration file is linked to application directory
|
||||
if [ ! -e /var/www/html/config.php ]; then
|
||||
echo "No link to configuration found in application directory ..."
|
||||
ln -s /home/wikindx/config.php /var/www/html/config.php
|
||||
chown -R www-data.www-data /var/www/html/wikindx
|
||||
echo "created"
|
||||
fi
|
||||
|
||||
docker-php-entrypoint apache2-foreground
|
||||
|
Loading…
Reference in New Issue
Block a user