Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
sjoeboo committed Dec 20, 2017
1 parent 28cdc9c commit 5544a45
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
12 changes: 12 additions & 0 deletions rpi_docker_couchpotato/Dockerfile
@@ -0,0 +1,12 @@
FROM resin/rpi-raspbian:stretch

RUN apt-get update && apt-get install python-cheetah python-openssl python-lxml wget && rm -rf /var/lib/apt/lists/*

RUN wget --no-check-certificate https://github.com/CouchPotato/CouchPotatoServer/tarball/master -O couchpotato.tar.gz && tar -xzvf couchpotato.tar.gz && mv CouchPotato-CouchPotatoServer-* CouchPotato

VOLUME /data
VOLUME /config

EXPOSE 5050

CMD python /CouchPotato/CouchPotato.py --data_dir /config --console_log
17 changes: 17 additions & 0 deletions rpi_docker_sickbeard/Dockerfile
@@ -0,0 +1,17 @@
FROM resin/rpi-raspbian:stretch


#RUN echo "deb-src http://archive.raspbian.org/raspbian/ stretch main contrib non-free rpi" >> /etc/apt/sources.list && apt-get update && mkdir ~/unrar-nonfree && cd ~/unrar-nonfree && apt-get build-dep unrar-nonfree && apt-get source -b unrar-nonfree && dpkg -i unrar*.deb && cd && rm -r ~/unrar-nonfree && rm -rf /var/lib/apt/lists/*

#RUN apt-get update && apt-get install sabnzbdplus python-openssl p7zip-full unzip par2 python-yenc && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install python-cheetah wget && rm -rf /var/lib/apt/lists/*

RUN wget --no-check-certificate https://github.com/midgetspy/Sick-Beard/tarball/master -O sickbeard.tar.gz && tar -xzvf sickbeard.tar.gz && mv midgetspy-Sick-Beard-* SickBeard

VOLUME /data
VOLUME /config

EXPOSE 8081

CMD python /SickBeard/SickBeard.py --datadir /config/data --config /config/config.ini -p 8081 --nolaunch
#CMD /usr/bin/sabnzbdplus -f /config/sabnzbd.ini -s 0.0.0.0:8080 -b 0

0 comments on commit 5544a45

Please sign in to comment.