Last active
November 20, 2018 22:45
-
-
Save muresan/a977f2a8d6a4f09abdc7b5102554fbd2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM lsiobase/alpine.python:3.8 | |
# set version label | |
ARG BUILD_DATE | |
ARG VERSION | |
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" | |
LABEL maintainer="sparklyballs" | |
# set python to use utf-8 rather than ascii | |
ENV PYTHONIOENCODING="UTF-8" | |
RUN \ | |
echo "**** install packages ****" && \ | |
apk add --no-cache \ | |
--repository http://nl.alpinelinux.org/alpine/edge/main \ | |
nodejs && \ | |
echo "**** install app ****" && \ | |
git clone --depth=1 https://github.com/SickChill/SickChill.git /app/sickrage | |
# copy local files | |
COPY root/ / | |
# ports and volumes | |
EXPOSE 8081 | |
VOLUME /config /downloads /tv |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.3' | |
services: | |
sickrage: | |
ports: | |
- "8081:8081" | |
environment: | |
PGID: 997 | |
PUID: 998 | |
TZ: BST | |
image: sickrage | |
container_name: sickrage | |
restart: always | |
volumes: | |
- /root/sickrage/config:/config | |
- /var/lib/transmission/Downloads:/downloads | |
- /srv/scaleway:/srv/scaleway | |
- /etc/pki/tls/:/etc/pki/tls/ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment