Created 08-04-2017 08:59 AM
Hi,
Very new to all of this. Am running through IoT weather Station tutorial and have hit roadblock trying to get HDF3 Sandbox up and going in Docker on Mac OSX. Have downloaded tar from site but when loading get the following error:
Pauls-iMac:Downloads paul$ docker load -i sandbox-summit-v15.tar open /var/lib/docker/tmp/docker-import-147953937/apps/json: no such file or directory
At a loss as to how to rectify. Docker appears to be running fine with no issues and have pre-allocated 12gb within Docker as per tutorial recommendation.
Created 08-10-2017 04:04 PM
The HDF docker image is an imported image, not a saved image. Docker load will not work, although the instructions tell you to do so. Use docker import instead:
On macOS/linux/Windows:
$> docker import "HDF_3.0_docker_12_6_2017.tar.gz"
And then use the startup script to start up the container...
Created 08-07-2017 10:30 PM
I have the same issue, using Windows 10 with Docker Version 17.06.0-ce-win19 (12801) Channel: stable
I ran the following command:
docker load -i "HDF_3.0_docker_12_6_2017.tar.gz"
After some time a similar error is shown:
open /var/lib/docker/tmp/docker-import-807691524/apps/json: no such file or directory
Have you found a solution to this?
Created 08-10-2017 04:04 PM
The HDF docker image is an imported image, not a saved image. Docker load will not work, although the instructions tell you to do so. Use docker import instead:
On macOS/linux/Windows:
$> docker import "HDF_3.0_docker_12_6_2017.tar.gz"
And then use the startup script to start up the container...
Created 08-11-2017 11:25 AM
This worked for me. Running the startup script also succeeded. Thanks!
Created 08-12-2017 11:59 PM
Thanks very much. This solution works.