alaskartv-docker/alaskarfin/Dockerfile
nomadics9 211ce4f6a3 init
2024-12-15 03:02:14 +03:00

17 lines
572 B
Docker

# Base image
FROM jellyfin/jellyfin:latest
# Copy your customization files directly into /jellyfin/jellyfin-web
COPY customization/ /jellyfin/jellyfin-web/
RUN chmod +x /jellyfin/jellyfin-web/update-index.sh && /jellyfin/jellyfin-web/update-index.sh
RUN chmod +x /jellyfin/jellyfin-web/titlechange.sh && /jellyfin/jellyfin-web/titlechange.sh
RUN apt-get update && apt-get install -y jq && rm -rf /var/lib/apt/lists/*
RUN chmod +x /jellyfin/jellyfin-web/titlechange.sh && /jellyfin/jellyfin-web/update-config.sh
# Expose the same ports as the base image
EXPOSE 8096