Skip to content

Instantly share code, notes, and snippets.

@thesimplekid
Created October 13, 2020 15:10
Show Gist options
  • Save thesimplekid/2462cdaa239d072bbfe2ce35a89befb9 to your computer and use it in GitHub Desktop.
Save thesimplekid/2462cdaa239d072bbfe2ce35a89befb9 to your computer and use it in GitHub Desktop.
docker system prune
docker container ls -a
docker container prune
docker volume prune && docker container prune && docker image prune -a && docker system prune --volumes
docker image prune -a
docker image prune -a && docker system prune --volumes
docker stop flask nginx mysql mysql_admin && docker volume prune && docker container prune && docker image prune -a && docker system prune --volumes && docker-compose up -d
RUN apt-get update && \
apt-get install -y libglib2.0-0 && \
python3 -m pip install -r app/requirements.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment