add a setup script for docker..

This commit is contained in:
Ammar Qammaz 2023-10-25 20:55:49 +03:00
parent 4c540f3d59
commit ac96e2cc2d

40
docker/setup.sh Executable file
View File

@ -0,0 +1,40 @@
#!/usr/bin/env bash
# This script builds and runs a docker image for local use.
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "$DIR"
cd ..
REPOSITORY=`pwd`
cd "$DIR"
#https://docs.nvidia.com/ai-enterprise/deployment-guide/dg-docker.html
sudo apt-get update
sudo apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
sudo apt-get update
sudo apt-get install -y docker-ce docker-ce-cli containerd.io
sudo docker run hello-world
#Make sure docker group is ok
sudo groupadd docker
sudo usermod -aG docker $USER
newgrp docker
exit 0