1
0
mirror of https://github.com/klokantech/tileserver-php.git synced 2025-08-19 12:51:38 +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

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"]