56c9f0a910
- Update Redfish spec and schema to version 1.0.0 - Update Redfish simulator to version 0.99.0a - Comply with Redfish 1.0.0 by changing remaining refs from /rest/v1 to /redfish/v1 - Adds a README to explain how to use the Docker container to launch the DMTF Redfish mockup in order to test without hardware - Update spec file for local usage
7 lines
175 B
Bash
Executable File
7 lines
175 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Build and tag images
|
|
docker rmi redfish-simulator
|
|
docker build -t "redfish-simulator" .
|
|
docker tag -f redfish-simulator:latest localhost:5000/redfish-simulator
|