]>
Commit | Line | Data |
---|---|---|
453f4653 V |
1 | FROM debian:jessie |
2 | MAINTAINER Shaarli Community | |
3 | ||
4 | RUN apt-get update \ | |
5 | && apt-get install -y \ | |
6 | nginx-light php5-fpm php5-gd supervisor \ | |
7 | git nano | |
8 | ||
9 | ADD https://getcomposer.org/composer.phar /usr/local/bin/composer | |
10 | RUN chmod 755 /usr/local/bin/composer | |
11 | ||
12 | COPY nginx.conf /etc/nginx/nginx.conf | |
13 | COPY supervised.conf /etc/supervisor/conf.d/supervised.conf | |
14 | RUN echo "<?php phpinfo(); ?>" > /var/www/index.php | |
15 | ||
16 | WORKDIR /var/www | |
17 | RUN rm -rf html \ | |
18 | && git clone https://github.com/shaarli/Shaarli.git shaarli \ | |
19 | && chown -R www-data:www-data . | |
20 | ||
21 | WORKDIR /var/www/shaarli | |
22 | RUN composer install | |
23 | ||
24 | VOLUME /var/www/shaarli/data | |
25 | ||
26 | EXPOSE 80 | |
27 | ||
28 | CMD ["/usr/bin/supervisord", "-n", "-c", "/etc/supervisor/supervisord.conf"] |