forked from Doma/docker-mopidy
adding command
This commit is contained in:
@@ -52,7 +52,7 @@ COPY pulse-client.conf /etc/pulse/client.conf
|
||||
# Allows any user to run mopidy, but runs by default as a randomly generated UID/GID.
|
||||
ENV HOME=/var/lib/mopidy
|
||||
RUN set -ex \
|
||||
&& usermod -u 84044 -G audio,sudo mopidy \
|
||||
&& usermod -G audio,sudo mopidy \
|
||||
&& chown mopidy:audio -R $HOME /entrypoint.sh \
|
||||
&& chmod go+rwX -R $HOME /entrypoint.sh
|
||||
|
||||
|
||||
12
README.md
12
README.md
@@ -207,3 +207,15 @@ Having more issues? [Report a bug on GitHub](https://github.com/wernight/docker-
|
||||
### Alsa Audio
|
||||
|
||||
For non debian distros. The gid for audio group in /etc/group must be 29 to match debians default as `audio:x:29:<your user outside of docker>` this is to match the user id inside the docker container. You'll also need to add the `output = alsasink` config line under the audio section in your `mopidy.conf`.
|
||||
|
||||
```
|
||||
alias mopidy='docker run -d -rm -u root \
|
||||
--device /dev/snd \
|
||||
--name mopidy \
|
||||
--ipc=host \
|
||||
--privileged \
|
||||
-v $HOME/.config/mopidy:/var/lib/mopidy/.config/mopidy/ \
|
||||
-p 6600:6600/tcp -p 6680:6680/tcp -p 5555:5555/udp \
|
||||
mopidy'
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user