Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 621 Bytes

README.md

File metadata and controls

43 lines (31 loc) · 621 Bytes

Docker Image Creator

The repo is used to create the image used by ADLINK.

Usage

  • Install docker and add docker privilege to current user.
sudo apt install docker.io
sudo groupadd docker
sudo gpasswd -a $USER docker
  • Create image for testing
# Intel platform
make intel
# nvidia platform
make nvidia

Below commands are no longer used

  • You need to login the dockerhub first.
docker login
  • Create the image and push to the dockerhub.
# Intel platform
make intel
# nvidia platform
make nvidia
# push docker image to dockerhub
make push_nv
make push_intel