This container is intended to use with CI/CD. Be carefule, this container is not for production.
run these commands:
docker build -t shirasagi/cibase .
If you want tag, run these commands:
docker build -t shirasagi/cibase:ruby-xxx-chrome-yy .
run these commands to launch irb
:
docker run --rm -t -i shirasagi/cibase
Or if you want to access OS natively, run these commands:
docker run --rm -t -i shirasagi/cibase /bin/bash
run these commands to upload the new container image to docker hub:
docker login
docker push shirasagi/cibase
If you want to push container image with tag, run these commands:
docker login
docker push shirasagi/cibase:ruby-xxx-chrome-yy