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/advanced-config/README.md
+12
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,18 @@ file, it's "exposed" by the portainer docker image for you and not available on
48
48
the docker host outside of this docker network. The service name is used as the
49
49
hostname, so make sure your service names are unique when using the same network.
50
50
51
+
## Docker Healthcheck
52
+
53
+
The `Dockerfile` that builds this project does not include a `HEALTCHECK` but you can opt in to this
54
+
feature by adding the following to the service in your `docker-compose.yml` file:
55
+
56
+
```yml
57
+
healthcheck:
58
+
test: ["CMD", "/bin/check-health"]
59
+
interval: 10s
60
+
timeout: 3s
61
+
```
62
+
51
63
## Docker Secrets
52
64
53
65
This image supports the use of Docker secrets to import from file and keep sensitive usernames or passwords from being passed or preserved in plaintext.
<inputtype="text"name="forwarding_host"class="form-control text-monospace"placeholder="example.com or 10.0.0.1 or 2001:db8:3333:4444:5555:6666:7777:8888"value="<%- forwarding_host %>"autocomplete="off"maxlength="255"required>
0 commit comments