-
Hello, I have never heard of docker before, what is it supposed to do here? I finally managed to get it to run but have no idea what it does. I thought it would give a nicely looking interface and red/green colors for up and down percentages no? When I do
The program just runs in my cmd prompt as usual. How is this supposed to work? Thanks everyone. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
Hey, I'm quite new to docker myself. But the main idea of docker is to be like an independent virtual machine. Like a bubble, where you can set up the machine as you want. In our case our docker performs all the installation necessaries, so when you build it and run it you are effectively running a normal terminal BUT all the installation packages and dependencies have been taking care by us. This way we ensure that all the users have a similar user experience, as docker is cross-platform. The current issue with docker is that it doesn't output matplotlib figures, so it isn't recommended. Regarding the colouring, we are gradually improving outputs to add this, for a better user experience. Hope this helps! |
Beta Was this translation helpful? Give feedback.
-
I'll get some Docker going soon. To run the terminal in Docker, we will need to add flags to disable UI features - plots, browser opens etc. |
Beta Was this translation helpful? Give feedback.
-
I was wondering yesterday if providing a pre-built docker image, ready to be ran by end users, is something that could be achieved. This would certainly cut down on the installation issues for users that are not that well versed in the python and stuff. Not sure how the use of docker image would affect the graphical output (plots, browser), though. Wouldn't that be taken care of by the docker itself, if the image would provide a X11 (Linux windowing) for example? |
Beta Was this translation helpful? Give feedback.
I'll get some Docker going soon.
To run the terminal in Docker, we will need to add flags to disable UI features - plots, browser opens etc.