904 B
904 B
test_dev
From here: https://www.youtube.com/watch?v=SDa3v4Quj7Y
Auth: https://www.youtube.com/watch?v=bgk1mI2pak4
Middelware: https://www.youtube.com/watch?v=_I6gP_nIFIA
Passport-js https://www.youtube.com/watch?v=-RCnNyD0L-s
Certificate
The Container need our certificate! -> Check if this works now?
Documentation
Docker cleanup
- Stop and Remove All Running & Stopped Containers
docker stop $(docker ps -aq) # Stop all running containers
docker rm $(docker ps -aq) # Remove all containers
- Remove All Images
docker rmi -f $(docker images -q) # Remove all images
- Remove All Volumes
docker volume rm $(docker volume ls -q) # Delete all volumes
- Remove Build Cache (BuildKit & Layers)
docker builder prune -a -f
- Remove All Networks (Optional)
docker network prune -f