Last active
February 19, 2018 14:51
-
-
Save franz101/37166c9b95300d97ab006b1822fc02ff to your computer and use it in GitHub Desktop.
DOCKER HACKS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Docker Hacks: | |
- Use Nvidia-Runtime: --runtime=nvidia | |
- Delete unused images: | |
docker images -q |xargs docker rmi | |
- Detectron Build example: | |
docker build -t detectron_fb . | |
docker run --runtime=nvidia --name detecty -it detectron_fb | |
#SOURCE: | |
https://zaiste.net/posts/removing_docker_containers/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment