Skip to content

Commit

Permalink
Changed Port allocation in Docker self hosting Docs from :80 to :8080
Browse files Browse the repository at this point in the history
Changed Port allocation in Docker self hosting Docs from :80 to :8080 Fixes #1743
  • Loading branch information
nikschen committed Dec 13, 2023
1 parent b29fe3f commit 3420eb3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions content/docs/self-hosting/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ If you would like to test Exceptionless locally, please follow this section.
Runs Exceptionless without persisting data between runs. Good for checking out Exceptionless for the first time and testing.

```bash
docker run --rm -it -p 5000:80 exceptionless/exceptionless:latest
docker run --rm -it -p 5000:8080 exceptionless/exceptionless:latest
```

## Simple Setup
Expand All @@ -23,15 +23,15 @@ Runs a very simple non-production setup for Exceptionless with data persisted be
On Linux:

```bash
docker run --rm -it -p 5000:80 \
docker run --rm -it -p 5000:8080 \
-v $(pwd)/esdata:/usr/share/elasticsearch/data \
exceptionless/exceptionless:latest
```

On PowerShell:

```powershell
docker run --rm -it -p 5000:80 `
docker run --rm -it -p 5000:8080 `
-v ${PWD}/esdata:/usr/share/elasticsearch/data `
exceptionless/exceptionless:latest
```
Expand All @@ -43,7 +43,7 @@ Runs a very simple non-production setup for Exceptionless with data persisted be
On Linux:

```bash
docker run --rm -it -p 5000:80 -p 5001:443 \
docker run --rm -it -p 5000:8080 -p 5001:443 \
-e EX_ConnectionStrings__Email=smtps://user:password@smtp.host.com:587 \
-e ASPNETCORE_URLS="https://+;http://+" \
-e ASPNETCORE_HTTPS_PORT=5001 \
Expand All @@ -57,7 +57,7 @@ docker run --rm -it -p 5000:80 -p 5001:443 \
On PowerShell:

```powershell
docker run --rm -it -p 5000:80 -p 5001:443 `
docker run --rm -it -p 5000:8080 -p 5001:443 `
-e EX_ConnectionStrings__Email=smtps://user:password@smtp.host.com:587 `
-e ASPNETCORE_URLS="https://+;http://+" `
-e ASPNETCORE_HTTPS_PORT=5001 `
Expand Down

0 comments on commit 3420eb3

Please sign in to comment.