Fix broken screenshot links
This commit is contained in:
parent
6d03b77cc1
commit
32a08eccd7
2 changed files with 14 additions and 16 deletions
16
README.md
16
README.md
|
|
@ -1,5 +1,5 @@
|
|||

|
||||

|
||||

|
||||

|
||||
|
||||
# Supermicro Java iKVM Viewer Docker
|
||||
A Docker container for connecting to Supermicro Java based iKVM Viewers, built from [jlesage/docker-baseimage-gui](https://github.com/jlesage/docker-baseimage-gui). No more hunting down old versions of Java, enabling insecure legacy algorithms, or configuring other solutions such as OpenWebStart or IcedTea-Web on multiple computers. Simply start the container, open your browser, and use your KVM viewer. Please see the [Disclaimers & Current Bugs](#disclaimers-&-current-bugs) before using.
|
||||
|
|
@ -12,12 +12,12 @@ services:
|
|||
image: ghcr.io/mistercalvin/supermicro-java-ikvm:latest
|
||||
container_name: supermicro-java-ikvm
|
||||
environment:
|
||||
- TZ: UTC
|
||||
- KVM_HOST: # IP or Hostname
|
||||
- KVM_USER: # Your IPMI Username
|
||||
- KVM_PASS: # Your IPMI Password
|
||||
- DISPLAY_WIDTH: 1024 # Display Width
|
||||
- DISPLAY_HEIGHT: 768 # Display Height
|
||||
TZ: UTC
|
||||
KVM_HOST: # IP or Hostname
|
||||
KVM_USER: # Your IPMI Username
|
||||
KVM_PASS: # Your IPMI Password
|
||||
DISPLAY_WIDTH: 1024 # Display Width
|
||||
DISPLAY_HEIGHT: 768 # Display Height
|
||||
ports:
|
||||
- 5800:5800 # Web UI Port
|
||||
- 5900:5900 # VNC Port
|
||||
|
|
|
|||
|
|
@ -4,18 +4,16 @@ services:
|
|||
supermicro-java-ikvm:
|
||||
image: supermicro-java-ikvm
|
||||
container_name: supermicro-java-ikvm
|
||||
build:
|
||||
context: build
|
||||
environment:
|
||||
TZ: ${TZ}
|
||||
KVM_HOST: ${KVM_HOST} # IP or Hostname
|
||||
KVM_USER: ${KVM_USER}
|
||||
KVM_PASS: ${KVM_PASS}
|
||||
TZ: UTC
|
||||
KVM_HOST: # IP or Hostname
|
||||
KVM_USER: # Your IPMI Username
|
||||
KVM_PASS: # Your IPMI Password
|
||||
DISPLAY_WIDTH: 1024 # Display Width
|
||||
DISPLAY_HEIGHT: 768 # Display Height
|
||||
ports:
|
||||
- ${WEB_PORT}:5800 # Web UI Port
|
||||
- ${VNC_PORT}:5900 # VNC Port
|
||||
- 5800:5800 # Web UI Port
|
||||
- 5900:5900 # VNC Port
|
||||
volumes:
|
||||
- ./vmedia:/app/vmedia/ # Virtual Media ISO's
|
||||
- ./screenshots:/app/screenshots/ # Screenshots / Recordings
|
||||
|
|
|
|||
Loading…
Reference in a new issue