Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/azurehex/docker
🐋 Docker Compose ....
https://github.com/azurehex/docker
docker yaml
Last synced: about 2 months ago
JSON representation
🐋 Docker Compose ....
- Host: GitHub
- URL: https://github.com/azurehex/docker
- Owner: AzureHex
- Created: 2024-11-16T03:58:48.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-16T04:02:20.000Z (about 2 months ago)
- Last Synced: 2024-11-16T05:17:11.572Z (about 2 months ago)
- Topics: docker, yaml
- Language: Shell
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Demo Account
username - eyes
password - Changeme## docker networks
```sh
docker network create net
``````sh
docker network create -d macvlan \
--subnet=192.168.29.0/24 \
--gateway=192.168.29.1 \
-o parent=enp4s0 macvlan
``````sh
docker exec -it syncthing sh
```## nvidia container toolkit
```sh
curl -fsSL https://nvidia.github.io/libnvidia-container/gpgkey \
| sudo gpg --dearmor -o /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg
curl -s -L https://nvidia.github.io/libnvidia-container/stable/deb/nvidia-container-toolkit.list \
| sed 's#deb https://#deb [signed-by=/usr/share/keyrings/nvidia-container-toolkit-keyring.gpg] https://#g' \
| sudo tee /etc/apt/sources.list.d/nvidia-container-toolkit.list
sudo apt-get update
``````sh
sudo apt-get install -y nvidia-container-toolkit
``````sh
sudo nvidia-ctk runtime configure --runtime=docker
sudo systemctl restart docker
```