Skip to content

Latest commit

 

History

History
83 lines (60 loc) · 1.85 KB

README.md

File metadata and controls

83 lines (60 loc) · 1.85 KB

plotly.js image testing

Test plotly.js with the Plotly Image-Server docker container.

Run the container

Under your plotly.js folder, run

docker run -d --name imagetest \
    -v $PWD:/var/www/streambed/image_server/plotly.js \
    -p 9010:9010 -p 2022:22 plotly/imageserver:[version]

where [version] is the latest Plotly Image-Server docker container version as listed on hub.docker.com and imagetest is the name of the docker container.

Run the tests

Under your plotly.js folder, run

npm run test-image

SSH into docker

ssh -p 2022 root@localhost # with password `root`

If you got this error:

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@    WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!     @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
Someone could be eavesdropping on you right now (man-in-the-middle attack)!
It is also possible that a host key has just been changed.
The fingerprint for the ECDSA key sent by the remote host is
dd:1e:e0:95:8d:ef:06:b8:0f:2f.
Please contact your system administrator.
Add correct host key in /home/jh/.ssh/known_hosts to get rid of this message.
Offending ECDSA key in /home/jh/.ssh/known_hosts:104
  remove with: ssh-keygen -f "/home/jh/.ssh/known_hosts" -R [localhost]:2022
ECDSA host key for [localhost]:2022 has changed and you have requested strict checking.
Host key verification failed.

simply run

ssh-keygen -f "${HOME}/.ssh/known_hosts" -R [localhost]:2022

to remove host information.

List all images

docker images

List all containers

docker ps -a

Stop container

docker stop [container hash]

Remove container

docker rm [container hash]