Map desired project directory to /data
in the container.
Install npm libraries from the current directory:
docker run -i -t --name web-3.0-grunt --rm -v $PWD:/data vadyalex/hitta-dev-web sh -c "npm install"
Run Gradle clean up task in from the current directory:
docker run -i -t --rm -v $PWD:/data vadyalex/hitta-dev-web sh -c "gradle clean"
Run Play 1.2 in the current directory:
docker run -i -t --rm -v $PWD:/data vadyalex/hitta-dev-web sh -c "play version"
Perform Dockerfile updates and build local container with latest tag:
make build
Push tagged container and update latest on docker hub:
TAG=2.0 make