Skip to content

Instantly share code, notes, and snippets.

@muresan
Last active November 20, 2018 22:45
Show Gist options
  • Save muresan/a977f2a8d6a4f09abdc7b5102554fbd2 to your computer and use it in GitHub Desktop.
Save muresan/a977f2a8d6a4f09abdc7b5102554fbd2 to your computer and use it in GitHub Desktop.
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
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