Skip to content

Commit 2131fe7

Browse files
committed
chore: update port mappings for non-root container (80→8080, 443→8443)
1 parent a4a14ea commit 2131fe7

1 file changed

Lines changed: 22 additions & 22 deletions

File tree

content/influxdb3/explorer/install.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Get {{% product-name %}} running in minutes:
3636
```bash
3737
docker run --detach \
3838
--name influxdb3-explorer \
39-
--publish 8888:80 \
39+
--publish 8888:8080 \
4040
influxdata/influxdb3-ui:{{% latest-patch %}}
4141
```
4242

@@ -71,7 +71,7 @@ Install [Docker](https://docs.docker.com/engine/) or [Docker Desktop](https://do
7171
```bash
7272
docker run --detach \
7373
--name influxdb3-explorer \
74-
--publish 8888:80 \
74+
--publish 8888:8080 \
7575
influxdata/influxdb3-ui:{{% latest-patch %}}
7676
```
7777
{{% /code-tab-content %}}
@@ -86,7 +86,7 @@ services:
8686
image: influxdata/influxdb3-ui:{{% latest-patch %}}
8787
container_name: influxdb3-explorer
8888
ports:
89-
- "8888:80"
89+
- "8888:8080"
9090
volumes:
9191
- ./config:/app-root/config:ro
9292
restart: unless-stopped
@@ -115,7 +115,7 @@ For production deployments with persistence, admin mode, and automatic image upd
115115
docker run --detach \
116116
--name influxdb3-explorer \
117117
--pull always \
118-
--publish 8888:80 \
118+
--publish 8888:8080 \
119119
--volume $(pwd)/db:/db:rw \
120120
--volume $(pwd)/config:/app-root/config:ro \
121121
--env SESSION_SECRET_KEY=$(openssl rand -hex 32) \
@@ -137,7 +137,7 @@ services:
137137
pull_policy: always
138138
command: ["--mode=admin"]
139139
ports:
140-
- "8888:80"
140+
- "8888:8080"
141141
volumes:
142142
- ./db:/db:rw
143143
- ./config:/app-root/config:ro
@@ -187,7 +187,7 @@ docker-compose up -d
187187
```bash
188188
docker run --detach \
189189
--name influxdb3-explorer \
190-
--publish 8888:80 \
190+
--publish 8888:8080 \
191191
--volume $(pwd)/db:/db:rw \
192192
influxdata/influxdb3-ui:{{% latest-patch %}}
193193
```
@@ -202,7 +202,7 @@ docker-compose up -d
202202
image: influxdata/influxdb3-ui:{{% latest-patch %}}
203203
container_name: influxdb3-explorer
204204
ports:
205-
- "8888:80"
205+
- "8888:8080"
206206
volumes:
207207
- ./db:/db:rw
208208
restart: unless-stopped
@@ -295,7 +295,7 @@ Instead of configuring connections through the UI, you can pre-define connection
295295
```bash
296296
docker run --detach \
297297
--name influxdb3-explorer \
298-
--publish 8888:80 \
298+
--publish 8888:8080 \
299299
--volume $(pwd)/config:/app-root/config:ro \
300300
influxdata/influxdb3-ui:{{% latest-patch %}}
301301
```
@@ -310,7 +310,7 @@ Instead of configuring connections through the UI, you can pre-define connection
310310
image: influxdata/influxdb3-ui:{{% latest-patch %}}
311311
container_name: influxdb3-explorer
312312
ports:
313-
- "8888:80"
313+
- "8888:8080"
314314
volumes:
315315
- ./config:/app-root/config:ro
316316
restart: unless-stopped
@@ -347,7 +347,7 @@ To enable TLS/SSL for secure connections:
347347
```bash
348348
docker run --detach \
349349
--name influxdb3-explorer \
350-
--publish 8888:443 \
350+
--publish 8888:8443 \
351351
--volume $(pwd)/ssl:/etc/nginx/ssl:ro \
352352
influxdata/influxdb3-ui:{{% latest-patch %}}
353353
```
@@ -362,7 +362,7 @@ To enable TLS/SSL for secure connections:
362362
image: influxdata/influxdb3-ui:{{% latest-patch %}}
363363
container_name: influxdb3-explorer
364364
ports:
365-
- "8888:443"
365+
- "8888:8443"
366366
volumes:
367367
- ./ssl:/etc/nginx/ssl:ro
368368
restart: unless-stopped
@@ -428,7 +428,7 @@ To configure Explorer to trust self-signed or custom CA certificates when connec
428428
docker run --detach \
429429
--name influxdb3-explorer \
430430
--restart unless-stopped \
431-
--publish 8888:443 \
431+
--publish 8888:8443 \
432432
--volume $(pwd)/db:/db:rw \
433433
--volume $(pwd)/config:/app-root/config:ro \
434434
--volume $(pwd)/ssl:/etc/nginx/ssl:ro \
@@ -453,7 +453,7 @@ services:
453453
pull_policy: always
454454
command: ["--mode=admin"]
455455
ports:
456-
- "8888:443"
456+
- "8888:8443"
457457
volumes:
458458
- ./db:/db:rw
459459
- ./config:/app-root/config:ro
@@ -491,14 +491,14 @@ Set the mode using the `--mode` parameter:
491491
# Query mode (default)
492492
docker run --detach \
493493
--name influxdb3-explorer \
494-
--publish 8888:80 \
494+
--publish 8888:8080 \
495495
influxdata/influxdb3-ui:{{% latest-patch %}} \
496496
--mode=query
497497
498498
# Admin mode
499499
docker run --detach \
500500
--name influxdb3-explorer \
501-
--publish 8888:80 \
501+
--publish 8888:8080 \
502502
influxdata/influxdb3-ui:{{% latest-patch %}} \
503503
--mode=admin
504504
```
@@ -516,7 +516,7 @@ services:
516516
# For admin mode, add:
517517
command: ["--mode=admin"]
518518
ports:
519-
- "8888:80"
519+
- "8888:8080"
520520
restart: unless-stopped
521521
```
522522
{{% /code-tab-content %}}
@@ -558,8 +558,8 @@ services:
558558
559559
| Container Port | Protocol | Purpose | Common Host Mapping |
560560
|----------------|----------|---------|---------------------|
561-
| 80 | HTTP | Web UI (unencrypted) | 8888 |
562-
| 443 | HTTPS | Web UI (encrypted) | 8888 |
561+
| 8080 | HTTP | Web UI (unencrypted) | 8888 |
562+
| 8443 | HTTPS | Web UI (encrypted) | 8888 |
563563
564564
---
565565
@@ -596,7 +596,7 @@ EOF
596596
docker run --detach \
597597
--name influxdb3-explorer \
598598
--pull always \
599-
--publish 8888:443 \
599+
--publish 8888:8443 \
600600
--volume $(pwd)/db:/db:rw \
601601
--volume $(pwd)/config:/app-root/config:ro \
602602
--volume $(pwd)/ssl:/etc/nginx/ssl:ro \
@@ -619,7 +619,7 @@ services:
619619
pull_policy: always
620620
command: ["--mode=admin"]
621621
ports:
622-
- "8888:443"
622+
- "8888:8443"
623623
volumes:
624624
- ./db:/db:rw
625625
- ./config:/app-root/config:ro
@@ -655,7 +655,7 @@ docker-compose up -d
655655
```bash
656656
docker run --rm \
657657
--name influxdb3-explorer \
658-
--publish 8888:80 \
658+
--publish 8888:8080 \
659659
influxdata/influxdb3-ui:{{% latest-patch %}}
660660
```
661661
{{% /code-tab-content %}}
@@ -670,7 +670,7 @@ services:
670670
image: influxdata/influxdb3-ui:{{% latest-patch %}}
671671
container_name: influxdb3-explorer
672672
ports:
673-
- "8888:80"
673+
- "8888:8080"
674674
```
675675
{{% /code-tab-content %}}
676676
{{< /code-tabs-wrapper >}}

0 commit comments

Comments
 (0)