-
-
Notifications
You must be signed in to change notification settings - Fork 319
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
[Bug] Unable to start container #231
Comments
Are you using a specific network for the container ? Do you have the same issue if you use the default, bridge network ? |
I hit the same problem $ docker run --env USER_ID="$(id -u)" --env GROUP_ID="$(id -g)" --env SECURE_CONNECTION=1 --env WEB_AUTHENTICATION=1 --env WEB_AUTHENTICATION_USERNAME --env WEB_AUTHENTICATION_PASSWORD --name ffproxy --publish 5800:5800 --shm-size 2g --volume /home/ltheisen/.local/share/firefox:/config:rw --add-host example.com:10.51.133.133 --add-host analytics.example.com:10.51.133.133 --add-host portal.example.com:10.51.133.133 --add-host sso.example.com:10.51.133.133 --add-host support.example.com:10.51.133.133 --add-host viz.example.com:10.51.133.133 docker.io/jlesage/firefox
...
[supervisor ] starting services...
[supervisor ] starting service 'webauth'...
[supervisor ] starting service 'xvnc'...
[supervisor ] service 'xvnc' failed to be started: not ready after 5000 msec, giving up.
... Is there a place to find more detail on this failure? I am using the default network. Worth noting, i found another issue in one of the other jlesage projects that seemed similar so thought it may be a base image related thing. That issue made it sound like the config mount could have gotten corrupted, so i tried deleting and recreating it, which failed in the same fashion. I also tried leaving off the config volume mount altogether, which failed with a different error: $ docker run --env USER_ID="$(id -u)" --env GROUP_ID="$(id -g)" --env SECURE_CONNECTION=1 --env WEB_AUTHENTICATION=1 --env WEB_AUTHENTICATION_USERNAME --env WEB_AUTHENTICATION_PASSWORD --name ffproxy --publish 5800:5800 --shm-size 2g --add-host example.com:10.51.133.133 --add-host analytics.example.com:10.51.133.133 --add-host portal.example.com:10.51.133.133 --add-host sso.example.com:10.51.133.133 --add-host support.example.com:10.51.133.133 --add-host viz.example.com:10.51.133.133 docker.io/jlesage/firefox
...
[supervisor ] starting service 'xvnc'...
[xvnc ] Xvnc TigerVNC 1.13.1 - built Jun 29 2024 04:32:59
[xvnc ] Copyright (C) 1999-2022 TigerVNC Team and many others (see README.rst)
[xvnc ] See https://www.tigervnc.org for information on TigerVNC.
[xvnc ] Underlying X server release 12014000
[xvnc ] Wed Jul 10 15:27:57 2024
[xvnc ] vncext: VNC extension running!
[xvnc ] vncext: Listening for VNC connections on /tmp/vnc.sock (mode 0660)
[xvnc ] vncext: created VNC server for screen 0
[supervisor ] starting service 'nginx'...
[nginx ] Listening for HTTPs connections on port 5800.
[supervisor ] starting service 'openbox'...
[openbox ] Openbox-Message: Failed to open the display from the DISPLAY environment variable.
[supervisor ] service 'openbox' failed to be started: not ready after 5000 msec, giving up.
... And the most minimal: $ docker run --name foo --publish 5800:5800 docker.io/jlesage/firefox
...
[supervisor ] starting services...
[supervisor ] starting service 'xvnc'...
[supervisor ] service 'xvnc' failed to be started: not ready after 5000 msec, giving up.
... |
I had this problem too! |
Keep getting this error and the container will not stay up :(
|
This did not work for me :( |
Current Behavior
Container fails to start. Last few lines from docker compose are below:
I have removed container, deleted image, also checked to make sure port 5800 is not being used.
Expected Behavior
Expected container to run as it has in the past
Steps To Reproduce
docker compose up
Environment
NAME="Red Hat Enterprise Linux"
VERSION="8.8 (Ootpa)"
ID="rhel"
ID_LIKE="fedora"
VERSION_ID="8.8"
PLATFORM_ID="platform:el8"
PRETTY_NAME="Red Hat Enterprise Linux 8.8 (Ootpa)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:redhat:enterprise_linux:8::baseos"
HOME_URL="https://www.redhat.com/"
DOCUMENTATION_URL="https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8"
BUG_REPORT_URL="https://bugzilla.redhat.com/"
REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8"
REDHAT_BUGZILLA_PRODUCT_VERSION=8.8
REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux"
REDHAT_SUPPORT_PRODUCT_VERSION="8.8"
Container creation
docker-compose.yml
version: '3'
services:
firefox:
image: jlesage/firefox
ports:
- "5800:5800"
volumes:
- "/docker/appdata/firefox:/config:rw"
Container log
Container inspect
Anything else?
No response
The text was updated successfully, but these errors were encountered: