https://github.com/jeffshee/icer-docker
https://github.com/jeffshee/icer-docker
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jeffshee/icer-docker
- Owner: jeffshee
- Created: 2021-11-24T04:15:53.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-12-23T04:10:44.000Z (over 4 years ago)
- Last Synced: 2025-12-03T13:29:58.454Z (6 months ago)
- Language: Dockerfile
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## ICER-docker
### Docker installation (Ubuntu)
```
sudo apt-get update
sudo apt-get install ca-certificates curl gnupg lsb-release -y
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io -y
sudo systemctl start docker
sudo systemctl enable docker
sudo docker run hello-world
```
### Manage Docker as a non-root user
```
sudo groupadd docker
sudo usermod -aG docker $USER
newgrp docker
```
### NVIDIA
https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/install-guide.html
### Developing inside the container
https://code.visualstudio.com/docs/remote/containers