You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/Containers/WireGuard.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -98,7 +98,7 @@ You have several options for how your remote peers resolve DNS requests:
98
98
99
99
*`PEERDNS=auto`
100
100
101
-
DNS queries made on connected WireGuard clients should work as if they were made on the host. If you [configure](Pi-hole.md#piholePrimary) your ad-blocker into the host's `resolveconf.conf`, Wireguard clients will also automatically use it.
101
+
DNS queries made on connected WireGuard clients should work as if they were made on the host. If you configure [PiHole](Pi-hole.md) into the host's `resolveconf.conf`, Wireguard clients will also automatically use it.
Copy file name to clipboardExpand all lines: docs/Containers/Zigbee2MQTT.md
+10-10
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@
33
33
34
34
This is a good basis for getting started. If it sounds like it will meet your needs, you will not need to make any changes. Otherwise, review the [environment variables](#envVars) and make appropriate changes to the service definition in your *compose file*.
35
35
36
-
5. Bring up your stack: { #upStack }
36
+
5.<aname="upStack"></a>Bring up your stack:
37
37
38
38
```console
39
39
$ cd ~/IOTstack
@@ -147,7 +147,7 @@ For those reasons, it is better to take the time to identify your Zigbee adapter
147
147
148
148
8. Continue from [bring up your stack](#upStack).
149
149
150
-
## Configuration { #configuration }
150
+
## Configuration
151
151
152
152
### Environment variables { #envVars }
153
153
@@ -168,7 +168,7 @@ $ docker-compose up -d zigbee2mqtt
168
168
169
169
The default service definition provided with IOTstack includes the following environment variables:
@@ -191,11 +191,11 @@ The default service definition provided with IOTstack includes the following env
191
191
192
192
The `depends_on` clause ensures that the Mosquitto container starts alongside the Zigbee2MQTT container. That would not be appropriate if Mosquitto was running on a separate computer.
This variable activates the Zigbee2MQTT web interface on port 8080. If you want to change the port number where you access the Zigbee2MQTT web interface, see [connecting to the web GUI](#connectGUI).
Defining this variable causes Zigbee2MQTT to create a symlink pointing to the current log **folder** at the path:
201
201
@@ -205,7 +205,7 @@ The default service definition provided with IOTstack includes the following env
205
205
206
206
See [Checking the log](#checkLog) for more information about why this is useful.
207
207
208
-
*`- DEBUG=zigbee-herdsman*` { #enableDebug }
208
+
*`- DEBUG=zigbee-herdsman*`
209
209
210
210
Enabling this variable turns on extended debugging inside the container.
211
211
@@ -235,7 +235,7 @@ Note:
235
235
236
236
* If you start Zigbee2MQTT from a clean slate (ie where the configuration file does not exist) **and** your *compose file* does not define the [`… MQTT_SERVER`](#mqttServer) environment variable discussed above, the container will go into a restart loop. This happens because the Zigbee2MQTT container defaults to trying to reach the Mosquitto broker at `localhost:1883` instead of `mosquitto:1883`. That usually fails.
237
237
238
-
## Verifying basic operation { #verifyOperation }
238
+
## Verifying basic operation
239
239
240
240
### Checking status { #checkStatus }
241
241
@@ -335,7 +335,7 @@ Notes:
335
335
$ docker-compose up -d zigbee2mqtt
336
336
```
337
337
338
-
## Shell access to the container { #openShell }
338
+
## Shell access to the container
339
339
340
340
To open a shell inside the Zigbee2MQTT container, run:
To close the shell and leave the container, either type "exit" and press <kbd>return</kbd>, or press <kbd>Control</kbd><kbd>d</kbd>.
349
349
350
-
## Container maintenance { #pullUpgrade }
350
+
## Container maintenance
351
351
352
352
When you become aware of a new version of Zigbee2MQTT on [DockerHub](https://hub.docker.com/r/koenkk/zigbee2mqtt/tags), do the following:
353
353
@@ -442,7 +442,7 @@ The changes you should make to your existing Zigbee2MQTT service definition are:
442
442
443
443
This ensures the Mosquitto container is brought up alongside Zigbee2MQTT. The Zigbee2MQTT container goes into a restart loop if Mosquitto is not reachable so this change enforces that business rule. See [`… MQTT_SERVER`](#mqttServer) for the situation where this might not be appropriate.
0 commit comments