Skip to content
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

Wrong client desktop size #46

Open
archont94 opened this issue Jun 28, 2022 · 3 comments
Open

Wrong client desktop size #46

archont94 opened this issue Jun 28, 2022 · 3 comments

Comments

@archont94
Copy link

Because of current DISPLAY_WIDTH and DISPLAY_HEIGHT values, it is not possible to enable full screen inside iDRAC6 2.92. It return error:
client desktop size

Besides, window is really small and you have to scroll all the time to see whole image.

Fix is simple - set DISPLAY_WIDTH=1280 and DISPLAY_HEIGHT=1024 and rebuild container. I tested it locally - app still works fine (including VIRTUAL_ISO automount) and I'm able to enable full screen:
after fix

@adampaulsen
Copy link

Where did you make those variable adjustments?

@thanegill
Copy link

@adampaulsen Pass them when starting the docker container:

Example:

docker run -d \
  -p 5801:5800 \
  -p 5901:5900 \
  -e DISPLAY_WIDTH=1920 \
  -e DISPLAY_HEIGHT=1080 \
  -e IDRAC_HOST=192.168.0.100 \
  -e IDRAC_USER=root \
  domistyle/idrac

@adampaulsen
Copy link

@thanegill Thank you! I ended up branching it, and editing it in the dockerfile itself.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants