added Dockerfile

This commit is contained in:
c0ding 2014-10-27 12:58:42 +01:00
parent c0ce32094e
commit 1ac4bf48ea
3 changed files with 92 additions and 0 deletions

41
docker/Dockerfile Normal file
View File

@ -0,0 +1,41 @@
FROM debian:jessie
ENV DEBIAN_FRONTEND noninteractive
RUN \
apt-get update && \
apt-get -y upgrade && \
apt-get -y install \
lighttpd \
php5-common \
php5-cgi \
php5-sqlite \
php-xml-parser \
php5 \
unzip \
wget
RUN \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
RUN \
cd /root && \
wget https://github.com/fguillot/miniflux/archive/master.zip -O miniflux.zip && \
unzip miniflux.zip -d /var/www && \
mv /var/www/miniflux-master/* /var/www/ && \
rm miniflux.zip && \
rm -r /var/www/html && \
rm -r /var/www/miniflux-master && \
chmod +x /var/www/data
RUN \
chown -R www-data:www-data /var/www && \
rm /etc/lighttpd/lighttpd.conf
ADD \
lighttpd.conf /etc/lighttpd/lighttpd.conf
EXPOSE 80
CMD ["/usr/sbin/lighttpd", "-D", "-f", "/etc/lighttpd/lighttpd.conf"]

17
docker/README.md Normal file
View File

@ -0,0 +1,17 @@
Installation
==========
## Build image :
```
docker build -t <yourname/imagename> .
```
## Run container from image :
```
docker run -p 80:80 --name miniflux <yourname/imagename>
```
Enjoy!

34
docker/lighttpd.conf Normal file
View File

@ -0,0 +1,34 @@
server.modules = (
"mod_access",
"mod_fastcgi",
"mod_alias",
"mod_compress",
"mod_redirect",
# "mod_rewrite",
)
server.document-root = "/var/www/"
server.upload-dirs = ( "/var/cache/lighttpd/uploads" )
server.errorlog = "/var/log/lighttpd/error.log"
server.pid-file = "/var/run/lighttpd.pid"
server.username = "www-data"
server.groupname = "www-data"
server.port = 80
index-file.names = ( "index.php", "index.html", "index.lighttpd.html" )
url.access-deny = ( "~", ".inc" )
static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
compress.cache-dir = "/var/cache/lighttpd/compress/"
compress.filetype = ( "application/javascript", "text/css", "text/html", "text/plain" )
# default listening port for IPv6 falls back to the IPv4 port
include_shell "/usr/share/lighttpd/use-ipv6.pl " + server.port
include_shell "/usr/share/lighttpd/create-mime.assign.pl"
include_shell "/usr/share/lighttpd/include-conf-enabled.pl"
fastcgi.server = ( ".php" => ((
"bin-path" => "/usr/bin/php-cgi",
"socket" => "/tmp/php.socket"
)))