If you have proxy settings in your system, please follow below guides to configure properly for docker.
-
Add the docker group if it doesn't already exist:
sudo groupadd docker
-
Add the connected user
$USERto the docker group. Change the user name to match your preferred user if you do not want to use your current user:sudo gpasswd -a $USER docker -
Either do a
newgrp dockeror log out/in to activate the changes to groups.
Clone the webinizer-demo project and run its build script:
git clone https://github.com/intel/webinizer-demo.git webinizer-demo
# It needs a temporary directory for build, clean it first
rm -rf temp_dir
# Build the docker image, all temporary files are under temp_dir
webinizer-demo/build/build.sh temp_dirIf it successfully builds, you may find temp_dir/release with the following items:
webinizer_img.tar- this is the docker imagewebinizer_demo- this is the directory containing the native projects to demo
See README.md for more details.