不是很了解docker,看了几篇docker的文章,没有看到适合我的使用场景,有没有大神能够深入浅出的解释下docker的优势及最佳实践,感激不尽
高洛峰2017-04-25 09:03:24
For large projects, Docker can directly divide the project from the application level and establish a good microservice system.
For deployment, especially distributed and cluster deployment, Docker can be built in one place and run everywhere. For computing clusters composed of several, dozens, hundreds or even more clusters, it can significantly reduce deployment time.
For development, Docker can provide a consistent environment for development, and can make the local development environment consistent with the online environment, thus eliminating the need for incompatibility and the need for debugging and adaptation when the development is completed and transplanted to the online environment. link.
PHP中文网2017-04-25 09:03:24
Configuration-free environment deployment, just package the configured environment and distribute the image directly
巴扎黑2017-04-25 09:03:24
In addition, Docker can also isolate the environment and reduce conflicts in the development environment.