-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathDockerfile
More file actions
21 lines (15 loc) · 727 Bytes
/
Dockerfile
File metadata and controls
21 lines (15 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Filename: Dockerfile
# Copyright (c) 2017 Secretmapper <https://github.com/Secretmapper>
#
# Last-Updated: 04/10/2017 Monday 09:46:13
# Description: Sleek, modern web interface for Transmission, Dockerized version.
FROM alpine:latest
MAINTAINER Clement Trösa <iomonad@riseup.net>
RUN apk add --update \
lighttpd wget unzip \
&& rm -rf /var/cache/apk/*
ADD .docker/lighttpd.conf /etc/lighttpd/lighttpd.conf
RUN adduser www-data -G www-data -H -s /bin/false -D
RUN cd /tmp ; wget --no-check-certificate https://github.com/Secretmapper/combustion/archive/release.zip ; unzip release.zip ; rm *.zip ; mv combustion-release/* /var/www
EXPOSE 80
ENTRYPOINT ["lighttpd", "-D", "-f", "/etc/lighttpd/lighttpd.conf"]