subdomains enabled, implemented go-routines, connected to portfolio, etc. heading into some major refactoring of the codebase, documentation, and installation/update scripts to enable rapid development.

This commit is contained in:
Josh Ashton
2024-11-01 14:49:14 -06:00
committed by Violet Ash
parent 7a3f895782
commit 54271e2323
11 changed files with 599 additions and 745 deletions
+3 -3
View File
@@ -1,9 +1,9 @@
#!/bin/zsh
# Force delete the old container and re-initialize the container.
docker rm -f security-layer
sudo docker rm -f security-layer
# Build the Docker image.
docker build --tag security-layer:latest .
sudo 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
sudo docker run --name security-layer -d -p 8000:8000 security-layer:latest