Posts by Alex da Silva • 131 points
2 posts
-
1
votes1
answer152
viewsA: How to identify in a shell script, which is the Docker command that is running
You have to put your script or the command CMD or in the ENTRYPOINT of your Dockefile. The command RUN will always execute the commands during image build and "commit" a new layer of that image. See…
-
2
votes1
answer53
viewsA: Gruntjs error in installing plugin using Vagrant
You have to run the command as root or use sudo: sudo npm install grunt-contrib-uglify --save-dev