parent
fc98c8c49a
commit
c7cadc0219
@ -1,3 +1,5 @@
|
|||||||
node_modules/
|
node_modules/
|
||||||
.vscode/
|
.vscode/
|
||||||
.env
|
.env
|
||||||
|
nginx.conf
|
||||||
|
nginx/
|
||||||
|
@ -0,0 +1,18 @@
|
|||||||
|
# Stop all running containers
|
||||||
|
docker stop $(docker ps -q)
|
||||||
|
|
||||||
|
# Remove all containers
|
||||||
|
docker rm $(docker ps -a -q)
|
||||||
|
|
||||||
|
# Remove all images
|
||||||
|
docker rmi -f $(docker images -q)
|
||||||
|
|
||||||
|
# Remove all networks
|
||||||
|
docker network rm $(docker network ls -q)
|
||||||
|
|
||||||
|
# Remove all volumes
|
||||||
|
docker volume rm $(docker volume ls -q)
|
||||||
|
|
||||||
|
# Alternatively, use prune to clean up everything
|
||||||
|
docker system prune -a --volumes
|
||||||
|
|
Loading…
Reference in new issue