This repository has been archived on 2025-01-31 . You can view files and clone it. You cannot open issues or pull requests or push a commit.
bc8f30e9242bbede14d9f219e2d929723bd89bac
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
Languages
HTML
44.3%
CSS
26.1%
JavaScript
16.4%
Dockerfile
11.6%
EJS
1.6%