This README would normally document whatever steps are necessary to get your application up and running.
A bitbucket pipeline image for git repositories.
- docker pull cheanan/bitbucket-pipeline:latest
- docker run -it cheanan/bitbucket-pipeline bash
cd <Dockerfile-directory>
- docker build -t cheanan/bitbucket-pipeline:latest .
Note the . is very important
docker --version docker version docker info
docker image ls
docker container ls docker container ls --all docker container ls -aq
- See all containers
docker ps -a
- Remove all docker containers
docker rm $(docker ps -aq)
- List all docker images on your system
docker images
- Remove all images from your machine
docker rmi $(docker images -q)
- Running low on space? Prune your docker space on your machine
docker system prune --all