hns_doh_loadbalancer/build.sh
Nathan Woodburn 0b432df8af
All checks were successful
Build Docker / Build Docker (push) Successful in 25s
fix: Fix ssl errors and stop access logging
2023-12-15 15:47:01 +11:00

13 lines
278 B
Bash
Executable File

#!/bin/bash
# Build the project
echo "Building the project..."
docker build -t hns_doh:test .
# Start the container
echo "Starting the container..."
docker run -p 1234:80 --name hns_doh hns_doh:test
# Remove the container
echo "Removing the container..."
docker rm -f hns_doh