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.
2025-01-30 16:46:14 +01:00
2025-01-30 08:10:22 +00:00
2025-01-17 12:26:04 +00:00
2025-01-16 16:31:19 +01:00
2025-01-29 14:42:49 +00:00
2025-01-29 19:10:24 +00:00
2025-01-29 19:10:24 +00:00
2025-01-30 17:17:05 +01:00

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
Description
No description provided
Readme MIT 2.8 MiB
Languages
HTML 44.3%
CSS 26.1%
JavaScript 16.4%
Dockerfile 11.6%
EJS 1.6%