mirror of
https://github.com/samrocketman/docker-compose-emby.git
synced 2026-05-01 17:09:29 +00:00
Dockerfile for running emby in docker
This commit is contained in:
13
Dockerfile
Normal file
13
Dockerfile
Normal file
@@ -0,0 +1,13 @@
|
||||
FROM centos:7
|
||||
|
||||
RUN set -ex; \
|
||||
yum install -y https://github.com/MediaBrowser/Emby.Releases/releases/download/3.5.2.0/emby-server-rpm_3.5.2.0_x86_64.rpm; \
|
||||
yum clean all; \
|
||||
rm -rf /var/cache/yum; \
|
||||
rm -rf /tmp/*
|
||||
|
||||
USER emby
|
||||
WORKDIR /opt/emby-server
|
||||
ENV EMBY_DATA /var/lib/emby
|
||||
|
||||
CMD /opt/emby-server/bin/emby-server
|
||||
Reference in New Issue
Block a user