Skip to content

Commit 6e127d4

Browse files
committed
hotfix: included explorer in discord-preferred list
1 parent bd543f6 commit 6e127d4

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

content/influxdb3/explorer/install.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,15 +166,15 @@ You can control the operational mode using the `MODE` environment variable.
166166

167167
```sh
168168
docker run -d \
169-
-e MODE=query \
169+
--env MODE=query \
170170
...
171171
```
172172

173173
### Run in admin mode
174174

175175
```sh
176176
docker run -d \
177-
-e MODE=admin \
177+
--env MODE=admin \
178178
...
179179
```
180180

@@ -212,5 +212,5 @@ If `MODE` is not set, the container defaults to query mode.
212212

213213
```sh
214214
# Map ports to custom host values
215-
-p 8888:80 -p 8443:443
215+
--publish 8888:80 --publish 8443:443
216216
```

layouts/partials/article/feedback.html

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88

99
{{ if .File }}
1010
{{ .Scratch.Set "pageGithubLink" (print "https://github.com/influxdata/docs-v2/edit/master/content/" .File.Path) }}
11-
{{ if .Page.HasShortcode "duplicate-oss" }}
12-
{{ .Scratch.Set "pageGithubLink" (replaceRE "/cloud/" "/v2/" (.Scratch.Get "pageGithubLink")) }}
13-
{{ else if .Params.Source }}
11+
{{ if .Params.Source }}
1412
{{ .Scratch.Set "pageGithubLink" (print "https://github.com/influxdata/docs-v2/edit/master/content" .Params.source) }}
1513
{{ end }}
1614
{{ else }}
@@ -53,7 +51,7 @@ <h4 id="bug-reports-and-feedback">Support and feedback</h4>
5351
To find support, use the following resources:
5452
</p>
5553
<ul>
56-
{{ if and (eq $product "influxdb3") (or (eq $version "core") (eq $version "enterprise")) }}
54+
{{ if and (eq $product "influxdb3") (or (eq $version "core") (eq $version "enterprise") (eq $version "explorer")) }}
5755
<li><a class="discord" href="https://discord.gg/9zaNCW2PRT" target="_blank"><strong>InfluxDB Discord Server</strong> <em style="opacity:.5">(Preferred)</em></a></li>
5856
<li><a class="slack" href="https://influxdata.com/slack" target="_blank">InfluxDB Community Slack</a></li>
5957
{{ else }}

0 commit comments

Comments
 (0)