/ functions / dive.bash
dive.bash
1  # https://github.com/wagoodman/dive
2  
3  function dive(){
4      docker run --rm -it \
5  	-v /var/run/docker.sock:/var/run/docker.sock \
6  	wagoodman/dive:latest "${@}"
7  }