1
0
mirror of https://github.com/klokantech/tileserver-php.git synced 2025-08-05 14:18:13 +02:00

Initial commit of Docker resources

This commit is contained in:
Petr Pridal
2015-09-04 16:54:39 +02:00
commit 26fc70a5ae
3 changed files with 56 additions and 0 deletions

16
000-default.conf Normal file
View File

@@ -0,0 +1,16 @@
<VirtualHost *:80>
ServerName localhost
ServerAdmin webmaster@localhost
LogLevel info
ErrorLog "|/bin/cat"
LogFormat "%h %l %u %t \"%r\" %>s %b" common
CustomLog "|/bin/cat" common
DocumentRoot /var/www/
<Directory "/var/www">
AllowOverride all
Order allow,deny
Allow from all
</Directory>
</VirtualHost>

25
Dockerfile Normal file
View File

@@ -0,0 +1,25 @@
FROM debian:jessie
RUN apt-get update -y && apt-get install -qq -y \
apache2 \
php5 \
php5-sqlite \
unzip
COPY 000-default.conf /etc/apache2/sites-available/000-default.conf
RUN echo "ServerName localhost" > /etc/apache2/conf-available/servername.conf && \
a2enconf servername && a2enmod rewrite
ADD start.sh \
https://github.com/klokantech/tileserver-php/archive/master.zip /
RUN chmod +x /start.sh && \
unzip master.zip && \
rm -Rf /var/www && \
cp -rf /tileserver-php-master /var/www
VOLUME /var/www
EXPOSE 80
CMD ["/start.sh"]

15
start.sh Normal file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
echo "Starting tileserver-php container"
echo "---------------------------------"
file="/var/www/tileserver.php"
if [ -f "$file" ]
then
echo "$file found in the volume."
else
echo "Copying tileserver.php into volume..."
cp /tileserver-php-master/* /tileserver-php-master/.* /var/www/
fi
echo
echo "Apache logs:"
echo
/usr/sbin/apache2ctl -e info -D FOREGROUND