Skip to content

Commit 41d5f1d

Browse files
authored
Fix port number (#95)
The `maptiler/tileserver-gl` container now runs on port 8080 instead of 80.
1 parent d69d2ab commit 41d5f1d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/host/tileserver-gl.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ curl -o zurich_switzerland.mbtiles https://[ADDRESS-YOU-GET-IN-DOWNLOADS]
2828

2929
## Serve Map Tiles
3030

31-
You should mount the current directory containing the vector tiles to the `/data` path inside of the container and bind the local port `8080` to port `80` inside of the container:
31+
You should mount the current directory containing the vector tiles to the `/data` path inside of the container and bind the local port `8080` to port `8080` inside of the container:
3232

3333
```bash
34-
docker run -it -v $(pwd):/data -p 8080:80 maptiler/tileserver-gl
34+
docker run -it -v $(pwd):/data -p 8080:8080 maptiler/tileserver-gl
3535
```
3636

3737
or from OpenMapTiles repository

docs/raster/tileserver-gl.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ curl -o zurich_switzerland.mbtiles https://[ADDRESS-YOU-GET-IN-DOWNLOADS]
2828

2929
## Serve Map Tiles
3030

31-
You should mount the current directory containing the vector tiles to the `/data` path inside of the container and bind the local port `8080` to port `80` inside of the container:
31+
You should mount the current directory containing the vector tiles to the `/data` path inside of the container and bind the local port `8080` to port `8080` inside of the container:
3232

3333
```bash
34-
docker run -it -v $(pwd):/data -p 8080:80 maptiler/tileserver-gl
34+
docker run -it -v $(pwd):/data -p 8080:8080 maptiler/tileserver-gl
3535
```
3636

3737
or from the OpenMapTiles repository

0 commit comments

Comments
 (0)