Nathan Woodburn
0b432df8af
All checks were successful
Build Docker / Build Docker (push) Successful in 25s
13 lines
278 B
Bash
Executable File
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 |