Docker images for Orange Data Mining Suite
Start orange docker container and bind ports 5901 (VNC interface) and 6901 (browser interface).
docker run -p 127.0.0.1:5901:5901 -p 127.0.0.1:6901:6901 -it acopar/orange-dockerYou can also use docker-compose file instead of command line arguments:
docker-compose up -dOn host machine, connect to orange docker with the following url in browser:
http://localhost:6901/?password=orange
vncviewer localhost:5901If you want to connect to orange docker remotely, create ssh tunnel on port 6901 (5901 for vnc connectivity).
ssh user@remote -L 6901:localhost:6901 -N -fNow you can connect the same way as before, for example:
http://localhost:6901/?password=orange
The data inside the container is not persistent. If necessarry, declare additional volume mount points. This allows file sharing between the host and the container.
docker run -p 127.0.0.1:5901:5901 -p 127.0.0.1:6901:6901 -v datasets:/home/orange/datasets -it acopar/orange-docker