I am new to Docker.
I have gotten Docker installed and successfully did the Docker pull request:
"docker pull yottadb/yottadb-debian"
I can see the image listed, as below.
kdtop@kdtop-VirtualBox:~$ sudo docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
yottadb/yottadb-debian latest 6502482464bf 6 weeks ago 2.89GB
According to ChatGPT, the next step is to run the image, as below.
kdtop@kdtop-VirtualBox:~$ sudo docker run -d yottadb/yottadb-debian
e00a3ff20d4d99bbff92a5f7ace575507cf35750b74736a4f3c7c52380e93789
I'm not sure what the above long number is, but OK. To get the container ID, I enter command as below.
kdtop@kdtop-VirtualBox:~$ sudo docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
e00a3ff20d4d yottadb/yottadb-debian "/docker-debian-star…" 7 seconds ago Up 6 seconds 1337/tcp, 9080/tcp frosty_mirzakhani
I then try to launch a terminal inside the container (again per ChatGPT instructions)
kdtop@kdtop-VirtualBox:~$ sudo docker exec -it e00a3ff20d4d bash
Error response from daemon: container e00a3ff20d4d99bbff92a5f7ace575507cf35750b74736a4f3c7c52380e93789 is not running
As above, I'm getting an error.
My goal is to run gdb on this as Sam indicated was possible.
Can anyone tell me how to move forward?
Thanks
Kevin