Docker?
-
Try a WPF app...
".45 ACP - because shooting twice is just silly" - JSOP, 2010
-----
You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
-----
When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013I don't do WTF WPF :rolleyes:
-
Marc Clifton wrote:
what it is and why I'd use it
Exactly!! I just cannot understand the hype around it.
Mobile Apps - Sound Meter | Color Analyzer | SMBC | Football Doodles
Abhinav S wrote:
I just cannot understand the hype around it.
Docker would make sense if you want to build microservices, where each service will run independently and deployed separately without impacting other services that the app needs.
-
I don't do WTF WPF :rolleyes:
there are plenty on cp that you could try with.
".45 ACP - because shooting twice is just silly" - JSOP, 2010
-----
You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
-----
When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013 -
there are plenty on cp that you could try with.
".45 ACP - because shooting twice is just silly" - JSOP, 2010
-----
You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
-----
When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013does CP have beer and pizza that I could try on? ;P
-
Anyone used it so far? Is it good?
Mobile Apps - Sound Meter | Color Analyzer | SMBC | Football Doodles
From the site:
Docker is the world’s leading software containerization platform.
I didn't know 'containerization' was a thing. :sigh:
-
When I saw the word "Pricing" on the web site, I lost interest.
".45 ACP - because shooting twice is just silly" - JSOP, 2010
-----
You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
-----
When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013Pricing ist for hosting containers in their Datacenter or for using their Cloud. The technology itself is free to use as far as I know. You can do the hosting yourself
-
From the site:
Docker is the world’s leading software containerization platform.
I didn't know 'containerization' was a thing. :sigh:
They have thingified it.
DURA LEX, SED LEX GCS d--- s-/++ a- C++++ U+++ P- L- E-- W++ N++ o+ K- w+++ O? M-- V? PS+ PE- Y+ PGP t++ 5? X R++ tv-- b+ DI+++ D++ G e++>+++ h--- ++>+++ y+++* Weapons extension: ma- k++ F+2 X If you think 'goto' is evil, try writing an Assembly program without JMP. -- TNCaver When I was six, there were no ones and zeroes - only zeroes. And not all of them worked. -- Ravi Bhavnani
-
Anyone used it so far? Is it good?
Mobile Apps - Sound Meter | Color Analyzer | SMBC | Football Doodles
I use it for cross compilation without cluttering the file system or accidentally referencing a native element of the tool chain ... almost like a temporary chroot jail. And I can easily share the environment with other members of the team. Other teams at my company use it for deploying services across a server farm.
-
Anyone used it so far? Is it good?
Mobile Apps - Sound Meter | Color Analyzer | SMBC | Football Doodles
Here's a use case for you. Google released an English language parser based on their tensorflow machine learning platform. I could download all the code from their git repository, set up a VM with all the right Java bits, and go through a 3 hour compilation process, and maybe get everything built successfully... ...or, I can download their Docker image and run that image in a Docker container on my machine in a fraction of the time and get to playing with the English parser which is what I was really interested in. I'm not a Docker expert, but I've been dabbling in it and I see potential. As others have mentioned, it really depends on your use case (insert quote about everything looking like a nail when you're holding a hammer). In my opinion, it is a slightly different take on virtualization. It seems more lightweight than other virtualization platforms (I have used VMware in the past, tend to use VirtualBox these days), but part of that is because it appears aimed at temporary resources. Hope this info helps! Cheers, Carl
-
Pricing ist for hosting containers in their Datacenter or for using their Cloud. The technology itself is free to use as far as I know. You can do the hosting yourself
-
Anyone used it so far? Is it good?
Mobile Apps - Sound Meter | Color Analyzer | SMBC | Football Doodles
-
Anyone used it so far? Is it good?
Mobile Apps - Sound Meter | Color Analyzer | SMBC | Football Doodles
-
Here's a use case for you. Google released an English language parser based on their tensorflow machine learning platform. I could download all the code from their git repository, set up a VM with all the right Java bits, and go through a 3 hour compilation process, and maybe get everything built successfully... ...or, I can download their Docker image and run that image in a Docker container on my machine in a fraction of the time and get to playing with the English parser which is what I was really interested in. I'm not a Docker expert, but I've been dabbling in it and I see potential. As others have mentioned, it really depends on your use case (insert quote about everything looking like a nail when you're holding a hammer). In my opinion, it is a slightly different take on virtualization. It seems more lightweight than other virtualization platforms (I have used VMware in the past, tend to use VirtualBox these days), but part of that is because it appears aimed at temporary resources. Hope this info helps! Cheers, Carl
OK. Thats a cool use case.
Mobile Apps - Sound Meter | Color Analyzer | SMBC | Football Doodles
-
Hm, I wonder if this would work for running a Windows game on Linux. You don't port the game, you just pop it into an appropriately provisioned Docker container and it's now 'Linux' compatible.
No, Docker runs on linux hosts, and merely segregates the running container from the underlying OS. There is no "translation" of Windows-specific functionality to linux equivalents.