mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
add couchpotato
Signed-off-by: Jessica Frazelle <acidburn@docker.com>
This commit is contained in:
parent
c5ef88c527
commit
e53d64c7af
30
couchpotato/Dockerfile
Normal file
30
couchpotato/Dockerfile
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
# Couchpotato in a container
|
||||||
|
#
|
||||||
|
# docker run -d \
|
||||||
|
# --restart always \
|
||||||
|
# -p 5050:5050 \
|
||||||
|
# -v /etc/localtime:/etc/localtime:ro \
|
||||||
|
# -v /volumes/couchpotato:/data \
|
||||||
|
# --name couchpotato \
|
||||||
|
# jess/couchpotato
|
||||||
|
#
|
||||||
|
FROM debian:sid
|
||||||
|
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||||
|
|
||||||
|
|
||||||
|
RUN apt-get update && apt-get install -y \
|
||||||
|
ca-certificates \
|
||||||
|
git \
|
||||||
|
python \
|
||||||
|
python-lxml \
|
||||||
|
python-openssl \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
EXPOSE 5050
|
||||||
|
|
||||||
|
RUN git clone https://github.com/RuudBurger/CouchPotatoServer.git /usr/src/couchpotato
|
||||||
|
|
||||||
|
WORKDIR /usr/src/couchpotato
|
||||||
|
|
||||||
|
ENTRYPOINT [ "python", "CouchPotato.py", "--debug" ]
|
||||||
|
CMD [ "--data_dir", "/data" ]
|
Loading…
Reference in New Issue
Block a user