Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

docker system prune

  • Remove all the unused data
  • See the flags
--all
--volumes
version: '3.7'
services:
  box:
    image: ubuntu:latest
    volumes:
        - .:/localdir
        - my-data:/mydata
    entrypoint:
        - tail
        - -f
        - /dev/null


volumes:
  my-data: