dockerized, integration with cloudflare tunnel, encryption and decryption.

This commit is contained in:
Josh Ashton
2024-07-19 15:14:57 -06:00
parent bfc343cd11
commit 9d5fdb97c8
14 changed files with 70 additions and 440 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/bin/zsh
# Force delete the old container and re-initialize the container.
docker rm -f security-layer
# Build the Docker image.
docker build --tag security-layer:latest .
# Create a Docker container from the image and connect host port 8000 to container port 8000.
docker run --name security-layer -d -p 8000:8000 security-layer:latest