Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 270 Bytes

dev_tips.md

File metadata and controls

9 lines (7 loc) · 270 Bytes

Dev tips

Stack & haskell

  • install stack mac: brew update and then brew install haskell-stack

Docker help

  • Stop all containers docker stop $(docker ps -a -q)
  • Remove all containers docker rm $(docker ps -a -q)
  • Remove an image `docker rmi {imageid}