Posts by Gomex • 121 points
3 posts
-
0
votes2
answers125
viewsA: Docker, does it make sense to use a provisioner?
If you already have the recipes/ modules ready, maybe it makes sense yes, but if you are still building, I do not see so much need. The idea of Ocker is to be as simple and declarative as possible,…
-
2
votes3
answers2587
viewsA: What are the advantages of using Docker instead of Vagrant?
Vagrant is for development. Docker is not limited to this. The great advantage of Docker is the ability to replicate the development environment in production. Automatically and immune to human…
-
0
votes2
answers2468
viewsA: How to edit my JS files inside Docker container using Sublime 3?
Volume mapping is the most appropriate way to do this. First check which location your container uses to read the codes you want to manipulate. Let’s imagine that it is /var/www/. If your code is in…