mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-10-04 22:49:21 +08:00
Update How-to-Monitor-Docker-Containers.md
The lines from the daemon.json file "hosts": ["unix:///var/run/docker.sock", "tcp://<host IP address>:2375"] and "hosts": ["unix:///var/run/docker.sock", "tcp://<host IP address>:2376"] needed an extra space after the comma before the " starting the next host. The Docker service was through syntax errors without that space between the defined hosts.
@@ -29,13 +29,13 @@ Update the daemon configuration located at `/etc/docker/daemon.json`:
|
|||||||
#any additional parameters should be kept
|
#any additional parameters should be kept
|
||||||
|
|
||||||
#Insecure option, only use this if you are running on a closed network
|
#Insecure option, only use this if you are running on a closed network
|
||||||
"hosts": ["unix:///var/run/docker.sock","tcp://<host IP address>:2375"]
|
"hosts": ["unix:///var/run/docker.sock", "tcp://<host IP address>:2375"]
|
||||||
|
|
||||||
#Secure option
|
#Secure option
|
||||||
"tls": true,
|
"tls": true,
|
||||||
"tlscert": "/var/docker/server.pem",
|
"tlscert": "/var/docker/server.pem",
|
||||||
"tlskey": "/var/docker/serverkey.pem",
|
"tlskey": "/var/docker/serverkey.pem",
|
||||||
"hosts": ["unix:///var/run/docker.sock","tcp://<host IP address>:2376"]
|
"hosts": ["unix:///var/run/docker.sock", "tcp://<host IP address>:2376"]
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user