Compare commits
6 Commits
b389297213
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
33dd1e288a | ||
|
|
b593b8a59b | ||
|
|
bab61ed6ac | ||
|
|
aadba6e38c | ||
|
|
d259232037 | ||
|
|
faed23014d |
22
Dockerfile
22
Dockerfile
@@ -30,12 +30,13 @@ RUN \
|
||||
libffi-dev \
|
||||
openssl-dev \
|
||||
python3-dev \
|
||||
py3-setuptools \
|
||||
py3-pip \
|
||||
py3-wheel \
|
||||
libcdio \
|
||||
libcaca \
|
||||
libvpx \
|
||||
v4l-utils-libs \
|
||||
py3-requests \
|
||||
py3-crypto \
|
||||
py3-gst \
|
||||
py3-gobject3 \
|
||||
@@ -45,8 +46,12 @@ RUN \
|
||||
gstreamer-tools \
|
||||
gst-plugins-base \
|
||||
gst-plugins-good \
|
||||
gst-plugins-bad \
|
||||
gst-plugins-ugly \
|
||||
gst-libav \
|
||||
alsa-utils \
|
||||
bash \
|
||||
sudo \
|
||||
&& pip3 install -U \
|
||||
pyopenssl \
|
||||
youtube-dl \
|
||||
@@ -61,11 +66,24 @@ RUN \
|
||||
Mopidy-Iris \
|
||||
Mopidy-Local \
|
||||
Mopidy-MPD \
|
||||
Mopidy-Jellyfin \
|
||||
Mopidy-Spotify-Web \
|
||||
Mopidy-SoundCloud \
|
||||
&& echo "* Cleaning up" \
|
||||
&& rm -rf /var/cache/apk/* \
|
||||
&& rm -rf /tmp/*
|
||||
&& rm -rf /root/.cache /root/.cargo \
|
||||
&& rm -rf /tmp/* \
|
||||
&& apk del \
|
||||
build-base \
|
||||
rust \
|
||||
cargo \
|
||||
libxml2-dev \
|
||||
libxslt-dev \
|
||||
libffi-dev \
|
||||
openssl-dev \
|
||||
python3-dev \
|
||||
py3-pip
|
||||
|
||||
|
||||
# Do this in a separate layer, because building the last is slooow
|
||||
# This allows us to alter these parameters without rebuilding the last.
|
||||
|
||||
@@ -15,7 +15,6 @@ excluded_file_extensions =
|
||||
.png
|
||||
.gif
|
||||
.bmp
|
||||
.m4a
|
||||
.itdb
|
||||
.itl
|
||||
|
||||
@@ -35,7 +34,6 @@ excluded_file_extensions =
|
||||
.png
|
||||
.gif
|
||||
.bmp
|
||||
.m4a
|
||||
.itdb
|
||||
.itl
|
||||
|
||||
@@ -45,9 +43,15 @@ image_dir = /data/.images
|
||||
|
||||
[http]
|
||||
hostname = 0.0.0.0
|
||||
port = 6680
|
||||
|
||||
[mpd]
|
||||
enabled = true
|
||||
# Useful if you want to control this instance from a remote MPD client
|
||||
hostname = 0.0.0.0
|
||||
port = 6600
|
||||
# This will help avoid timeout errors for artists or folders with large amounts of files
|
||||
connection_timeout = 300
|
||||
|
||||
[iris]
|
||||
country = GB
|
||||
@@ -76,3 +80,12 @@ auth_token =
|
||||
[scrobbler]
|
||||
username =
|
||||
password =
|
||||
|
||||
[jellyfin]
|
||||
hostname = jellyfin:8096
|
||||
username = mopidy
|
||||
password = 66Hky1XQL1oTg
|
||||
libraries = Music
|
||||
|
||||
[logging]
|
||||
#verbosity = 1
|
||||
|
||||
Reference in New Issue
Block a user