dd66a15e02
- Simplify tagging. - Test removal of old container.
10 lines
365 B
Bash
Executable File
10 lines
365 B
Bash
Executable File
#!/bin/bash
|
|
|
|
docker ps -a | grep -q "redfish-simulator:latest"
|
|
if [ "$?" -eq 0 ]; then
|
|
docker rm "redfish-simulator"
|
|
fi
|
|
# The -p option needs to be after the run command. No warning is given if before but doesn't work
|
|
docker run -d -p 8000:80 --name "redfish-simulator" redfish-simulator:latest
|
|
echo "Launch your browser and load http://localhost:8000/redfish/v1"
|