@@ -64,8 +64,9 @@ docker build \
64
64
--tag influxdb-relay:latest \
65
65
.
66
66
docker run \
67
- --volume /path/to/influxdb-relay.conf:/etc/influxdb-relay/influxdb-relay.conf
68
- --rm
67
+ --volume /path/to/influxdb-relay.conf:/etc/influxdb-relay/influxdb-relay.conf \
68
+ --publish 9096:9096 \
69
+ --rm \
69
70
influxdb-relay:latest
70
71
```
71
72
@@ -76,8 +77,9 @@ Docker pull our image.
76
77
``` sh
77
78
docker pull vptech/influxdb-relay:latest
78
79
docker run \
79
- --volume /path/to/influxdb-relay.conf:/etc/influxdb-relay/influxdb-relay.conf
80
- --rm
80
+ --volume /path/to/influxdb-relay.conf:/etc/influxdb-relay/influxdb-relay.conf \
81
+ --publish 9096:9096 \
82
+ --rm \
81
83
vptech/influxdb-relay:latest
82
84
```
83
85
@@ -106,7 +108,7 @@ You can find some configurations in [examples](examples) folder.
106
108
name = " example-http"
107
109
108
110
# TCP address to bind to, for HTTP server.
109
- bind-addr = " 127 .0.0.1 :9096"
111
+ bind-addr = " 0 .0.0.0 :9096"
110
112
111
113
# Timeout for /health route
112
114
# After this time, the host may be considered down
@@ -168,7 +170,7 @@ timeout = "10s"
168
170
name = " example-udp"
169
171
170
172
# UDP address to bind to.
171
- bind-addr = " 127 .0.0.1 :9096"
173
+ bind-addr = " 0 .0.0.0 :9096"
172
174
173
175
# Socket buffer size for incoming connections.
174
176
read-buffer = 0 # default
@@ -221,7 +223,7 @@ bodies will not be forwarded back to the clients.
221
223
#### /health endpoint
222
224
223
225
This endpoint provides a quick way to check the state of all the backends.
224
- It will return a JSON object detailing the status of the backends like this :
226
+ It will return a JSON object detailing the status of the backends like this :
225
227
226
228
``` json
227
229
{
0 commit comments