|
|
|
|
|
by sd8dgf8ds8g8dsg
3162 days ago
|
|
Using docker can greatly improve your development situation.
For example, you can use docker to define the full environment needed to run your web app, meaning you can have another dev running it with "docker run", and not needing to install any local dependencies, as everything (web server, node etc) is contained inside the docker container.
This turns out also be useful for your future self, when you in 2 years from now are having troubles re-creating the environment needed for running your service. Docker orchestrate can further improve your development situation, in which you can use it to define and test out multiple virtual servers on your laptop, such as the database, the file server and the web server. |
|