dockerfiles icon indicating copy to clipboard operation
dockerfiles copied to clipboard

hi, it does not start on my QNAP

Open onehans opened this issue 6 years ago • 3 comments

1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890 libudev: udev_has_devtmpfs: name_to_handle_at on /dev: Operation not permitted
AL lib: (WW) alc_initconfig: Failed to initialize backend "pulse"
ALSA lib confmisc.c:768:(parse_card) cannot find card '0'
ALSA lib conf.c:4259:(_snd_config_evaluate) function snd_func_card_driver returned error: No such file or directory
ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings
ALSA lib conf.c:4259:(_snd_config_evaluate) function snd_func_concat returned error: No such file or directory
ALSA lib confmisc.c:1251:(snd_func_refer) error evaluating name
ALSA lib conf.c:4259:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:4738:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM default
AL lib: (EE) alsa_open_playback: Could not open playback device 'default': No such file or directory
WARNING: OPENAL: Could not open audio device
error: XDG_RUNTIME_DIR not set in the environment.

onehans avatar Nov 20 '19 17:11 onehans

Which Docker image are you trying to run?

jamesnetherton avatar Nov 20 '19 19:11 jamesnetherton

hi. scripted win uae.

⁣Get BlueMail for Android ​

On 20 Nov 2019, 19:11, at 19:11, James Netherton [email protected] wrote:

Which Docker image are you trying to run?

-- You are receiving this because you authored the thread. Reply to this email directly or view it on GitHub: https://github.com/jamesnetherton/dockerfiles/issues/3#issuecomment-556263235

onehans avatar Nov 20 '19 19:11 onehans

Possibly because it's expecting graphics and sound devices to be available.

E.g via --device arguments:

docker run -it \
   -e DISPLAY=$DISPLAY \
   -v /tmp/.X11-unix:/tmp/.X11-unix \
   -v $HOME/.config/fs-uae/:/home/fsuae/config \
   --device /dev/dri/card0 \
   --device /dev/snd \
   --name fs-uae \
   jamesnetherton/fs-uae

Not sure if the QNAP docker stuff supports that.

jamesnetherton avatar Nov 20 '19 20:11 jamesnetherton