We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Docker container is missing aplay for local playback
To Reproduce Steps to reproduce the behavior: 0. Run docker container as described in de README.md
Expected behavior Sound!
Environment (please complete the following information):
Fix
Fix is add --device /dev/snd to the docker run command e.g.
docker run \ -it --device /dev/snd \ -p 59125:59125 \ -v "/docker/mimic3:/home/mimic3/.local/share/mycroft/mimic3" \ 'mycroftai/mimic3'
And inside the docker container install and enable audio. Run as root in shell the following commands:
mkdir -p /var/cache/apt/amd64/archives/partial apt install -y --no-install-recommends libasound2 libasound2-plugins alsa-utils usermod -a -G audio mimic3
Now I have sound. But all my changes will be gone with every docker update :(
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Docker container is missing aplay for local playback
To Reproduce
Steps to reproduce the behavior:
0. Run docker container as described in de README.md
Expected behavior
Sound!
Environment (please complete the following information):
Fix
Fix is add --device /dev/snd to the docker run command e.g.
And inside the docker container install and enable audio.
Run as root in shell the following commands:
Now I have sound. But all my changes will be gone with every docker update :(
The text was updated successfully, but these errors were encountered: