I apologize if my question seems dumb.
I have installed Docker Desktop for Mac, then run the said command with relevant parameters (IDRAC_HOST is an IP address of a remote server):
docker run -d -p 5800:5800 -p 5900:5900 -e IDRAC_HOST=https://123.123.123.123 -e IDRAC_USER=root -e IDRAC_PASSWORD=1234 domistyle/idrac6
Running docker container ls shows the container running, but it shuts down after a few seconds:
$ docker container ls
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
b0437b539c82 domistyle/idrac6 "/init" 4 seconds ago Up 2 seconds 0.0.0.0:5800->5800/tcp, 0.0.0.0:5900->5900/tcp sad_goldstine
$ docker container ls
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
b0437b539c82 domistyle/idrac6 "/init" 6 seconds ago Up 5 seconds 0.0.0.0:5800->5800/tcp, 0.0.0.0:5900->5900/tcp sad_goldstine
$ docker container ls
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
b0437b539c82 domistyle/idrac6 "/init" 8 seconds ago Up 6 seconds 0.0.0.0:5800->5800/tcp, 0.0.0.0:5900->5900/tcp sad_goldstine
$ docker container ls
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
Is this the intended behavior? How to I debug this? I've tried to connect to the instance, but the time is too short for that.
Please send some help as I'd really love to use this instead of a VM with Windows...
I apologize if my question seems dumb.
I have installed Docker Desktop for Mac, then run the said command with relevant parameters (
IDRAC_HOSTis an IP address of a remote server):docker run -d -p 5800:5800 -p 5900:5900 -e IDRAC_HOST=https://123.123.123.123 -e IDRAC_USER=root -e IDRAC_PASSWORD=1234 domistyle/idrac6Running
docker container lsshows the container running, but it shuts down after a few seconds:Is this the intended behavior? How to I debug this? I've tried to connect to the instance, but the time is too short for that.
Please send some help as I'd really love to use this instead of a VM with Windows...