-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
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
Firefox/Chrome Crashing all the time #112
Comments
Thanks. Update README.md. |
Subject: Issue with Sound Configuration in Docker Container on Google Cloud Description: I'm currently experiencing issues configuring sound within a Docker container on Google Cloud. I'm attempting to run a containerized environment with sound capabilities using the snd-aloop kernel module but encountering difficulties. Here are the steps I've taken: Installed snd-aloop kernel module on the Google Cloud virtual machine instance. =>docker run -it --rm --privileged -p 6080:80 -e ALSADEV=hw:2,0 dorowu/ubuntu-desktop-lxde-vnc. Could you please provide guidance on: How to properly configure sound within a Docker container on Google Cloud using snd-aloop or any alternate methods? Thank you! |
Been experiencing this since using your docker image. Finally found a fix its because the default /dev/shm size is 64mb (df -H /dev/shm to check size).
The fix is to add -v /dev/shm:/dev/shm so it maps docker host memory across. Or you can add a specific amount of memory using --shm-size 2g for example. Would be great to get an environmental variable or fix included/update documentation to reflect.
Full info on fix on https://hub.docker.com/r/jlesage/firefox#increasing-shared-memory-size
The text was updated successfully, but these errors were encountered: