-
Notifications
You must be signed in to change notification settings - Fork 1
Tips
emkor93 edited this page Apr 12, 2018
·
1 revision
To make sure your Docker containers are flushed and re-created between docker-compose re-runs, use those commands:
-
docker rm $(docker ps -a -q)
(removes containers that are not running) -
docker volume rm $(docker volume ls -qf dangling=true)
(removes orphaned volumes)
To make life easier, I recommend ctop tool for overseeing container behavior and resource usage
For making requests directly from terminal, I use httpie tool
audiopyle @ 2016