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.
Files
test_dev/README.md
2025-01-30 17:17:05 +01:00

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

Documentation

Docker cleanup

  1. Stop and Remove All Running & Stopped Containers
docker stop $(docker ps -aq)  # Stop all running containers
docker rm $(docker ps -aq)    # Remove all containers
  1. Remove All Images
docker rmi -f $(docker images -q)  # Remove all images
  1. Remove All Volumes
docker volume rm $(docker volume ls -q)  # Delete all volumes
  1. Remove Build Cache (BuildKit & Layers)
docker builder prune -a -f
  1. Remove All Networks (Optional)
docker network prune -f