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 for #1743 #51

Merged
merged 1 commit into from
Dec 13, 2023
Merged
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
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