DMTF / Redfish-Mockup-Server

A simple Python 3.4 program that can be copied into a folder at the top of any Redfish mockup and can serve Redfish requests on the specified IP/port.
Other
83 stars 37 forks source link

Build a container from GitHub command points to wrong branch (master instead of main) #116

Closed marianoguerra closed 6 months ago

marianoguerra commented 6 months ago

hi,

in the README the command after "Build a container from GitHub:" says

docker build -t dmtf/redfish-mockup-server:latest https://github.com/DMTF/Redfish-Mockup-Server.git

which defaults to the master branch, but the repo has a main branch, the right command should probably be:

docker build -t dmtf/redfish-mockup-server:latest "https://github.com/DMTF/Redfish-Mockup-Server.git#main"