Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix port number of maptiler/tileserver-gl #95

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/host/tileserver-gl.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ curl -o zurich_switzerland.mbtiles https://[ADDRESS-YOU-GET-IN-DOWNLOADS]

## Serve Map Tiles

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:
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:

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

or from OpenMapTiles repository
Expand Down
4 changes: 2 additions & 2 deletions docs/raster/tileserver-gl.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ curl -o zurich_switzerland.mbtiles https://[ADDRESS-YOU-GET-IN-DOWNLOADS]

## Serve Map Tiles

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:
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:

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

or from the OpenMapTiles repository
Expand Down