mirror of
https://github.com/tubearchivist/jellyfin.git
synced 2024-11-16 17:00:14 +00:00
Add initial docker setup
Signed-off-by: Jonas Rosland <jonas.rosland@gmail.com>
This commit is contained in:
parent
348fb20b06
commit
79bb5bd579
6
Dockerfile
Normal file
6
Dockerfile
Normal file
@ -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
|
7
docker-compose.yml
Normal file
7
docker-compose.yml
Normal file
@ -0,0 +1,7 @@
|
||||
services:
|
||||
ta-jf:
|
||||
build: ./
|
||||
volumes:
|
||||
- ./config.json:/jellyfin/config.json:ro
|
||||
- /tubearchivist/media:/tubearchivist/media
|
||||
command: python main.py
|
Loading…
Reference in New Issue
Block a user