We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
These docker commands are that I use every single day
# show containers docker ps # Logging to container docker logs -f <container_id> # ssh to container docker exec -it <container_id> /bin/bash # build container docker-compose build [container_name_on_yml] # run container docker-compose up [container_name_on_yml] # run rails console on container docker-compose run <container_name_on_yml> rails c # remove all images docker rmi -f $(docker images -a -q)
Please let me know your other docker's daily hacks! 🥇
The text was updated successfully, but these errors were encountered:
I know one trick to remove all images.
docker rmi -f $(docker images -a -q)
Sorry, something went wrong.
I added your hack accordingly. Thanks @mddanishyusuf !
absyah
No branches or pull requests
These docker commands are that I use every single day
Please let me know your other docker's daily hacks! 🥇
The text was updated successfully, but these errors were encountered: