diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3e776e1 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM python:3.10.9-slim-bullseye +RUN apt-get update && apt-get install -y --no-install-recommends \ + git +RUN git clone https://github.com/tubearchivist/jellyfin +WORKDIR jellyfin +RUN pip install -r requirements.txt diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..1ffd1fb --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,7 @@ +services: + ta-jf: + build: ./ + volumes: + - ./config.json:/jellyfin/config.json:ro + - /tubearchivist/media:/tubearchivist/media + command: python main.py \ No newline at end of file