Guest User

Untitled

a guest
Jul 18th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #!/bin/bash
  2. # execute bash inside docker images
  3. docker exec -it <container_name> bash
  4.  
  5. # remove all docker repositories
  6. docker system prune -a
  7.  
  8. # access docker interal console logs:
  9. docker logs -f --tail 200 <container_name>
Add Comment
Please, Sign In to add comment