https://github.com/bcmmbaga/container-dns
WIP
https://github.com/bcmmbaga/container-dns
Last synced: about 2 months ago
JSON representation
WIP
- Host: GitHub
- URL: https://github.com/bcmmbaga/container-dns
- Owner: bcmmbaga
- License: mit
- Created: 2021-07-02T14:33:58.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-15T19:24:19.000Z (almost 4 years ago)
- Last Synced: 2025-02-15T15:52:08.168Z (4 months ago)
- Language: Python
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Container-dns
## Configure docker daemon
1. Use the command `sudo systemctl edit docker.service` to open an override file for `docker.service` in a text editor.
2. Add or modify the following lines, substituting your own values.
```systemd
[Service]
ExecStart=
ExecStart=/usr/bin/dockerd -H fd:// -H tcp://127.0.0.1:2375
```
3. Reload the `systemctl` configuration.
```
$ sudo systemctl daemon-reload
```
5. Restart Docker.
```
$ sudo systemctl restart docker.service
```