Skip to content

Commit a442e5c

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

2 files changed

Lines changed: 23 additions & 23 deletions

File tree

content/influxdb3/explorer/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ docker pull influxdata/influxdb3-ui
3333
# Run the Docker container
3434
docker run --detach \
3535
--name influxdb3-explorer \
36-
--publish 8888:80 \
36+
--publish 8888:8080 \
3737
--publish 8889:8888 \
3838
influxdata/influxdb3-ui \
3939
--mode=admin

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
@@ -429,7 +429,7 @@ To configure Explorer to trust self-signed or custom CA certificates when connec
429429
docker run --detach \
430430
--name influxdb3-explorer \
431431
--restart unless-stopped \
432-
--publish 8888:443 \
432+
--publish 8888:8443 \
433433
--volume $(pwd)/db:/db:rw \
434434
--volume $(pwd)/config:/app-root/config:ro \
435435
--volume $(pwd)/ssl:/etc/nginx/ssl:ro \
@@ -455,7 +455,7 @@ services:
455455
pull_policy: always
456456
command: ["--mode=admin"]
457457
ports:
458-
- "8888:443"
458+
- "8888:8443"
459459
volumes:
460460
- ./db:/db:rw
461461
- ./config:/app-root/config:ro
@@ -493,14 +493,14 @@ Set the mode using the `--mode` parameter:
493493
# Query mode (default)
494494
docker run --detach \
495495
--name influxdb3-explorer \
496-
--publish 8888:80 \
496+
--publish 8888:8080 \
497497
influxdata/influxdb3-ui:{{% latest-patch %}} \
498498
--mode=query
499499
500500
# Admin mode
501501
docker run --detach \
502502
--name influxdb3-explorer \
503-
--publish 8888:80 \
503+
--publish 8888:8080 \
504504
influxdata/influxdb3-ui:{{% latest-patch %}} \
505505
--mode=admin
506506
```
@@ -518,7 +518,7 @@ services:
518518
# For admin mode, add:
519519
command: ["--mode=admin"]
520520
ports:
521-
- "8888:80"
521+
- "8888:8080"
522522
restart: unless-stopped
523523
```
524524
{{% /code-tab-content %}}
@@ -560,8 +560,8 @@ services:
560560
561561
| Container Port | Protocol | Purpose | Common Host Mapping |
562562
|----------------|----------|---------|---------------------|
563-
| 80 | HTTP | Web UI (unencrypted) | 8888 |
564-
| 443 | HTTPS | Web UI (encrypted) | 8888 |
563+
| 8080 | HTTP | Web UI (unencrypted) | 8888 |
564+
| 8443 | HTTPS | Web UI (encrypted) | 8888 |
565565
566566
---
567567
@@ -598,7 +598,7 @@ EOF
598598
docker run --detach \
599599
--name influxdb3-explorer \
600600
--pull always \
601-
--publish 8888:443 \
601+
--publish 8888:8443 \
602602
--volume $(pwd)/db:/db:rw \
603603
--volume $(pwd)/config:/app-root/config:ro \
604604
--volume $(pwd)/ssl:/etc/nginx/ssl:ro \
@@ -621,7 +621,7 @@ services:
621621
pull_policy: always
622622
command: ["--mode=admin"]
623623
ports:
624-
- "8888:443"
624+
- "8888:8443"
625625
volumes:
626626
- ./db:/db:rw
627627
- ./config:/app-root/config:ro
@@ -657,7 +657,7 @@ docker-compose up -d
657657
```bash
658658
docker run --rm \
659659
--name influxdb3-explorer \
660-
--publish 8888:80 \
660+
--publish 8888:8080 \
661661
influxdata/influxdb3-ui:{{% latest-patch %}}
662662
```
663663
{{% /code-tab-content %}}
@@ -672,7 +672,7 @@ services:
672672
image: influxdata/influxdb3-ui:{{% latest-patch %}}
673673
container_name: influxdb3-explorer
674674
ports:
675-
- "8888:80"
675+
- "8888:8080"
676676
```
677677
{{% /code-tab-content %}}
678678
{{< /code-tabs-wrapper >}}

0 commit comments

Comments
 (0)