Skip to content
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
2 changes: 1 addition & 1 deletion develop-docs/self-hosted/configuration/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Sentry comes with a cleanup cron job that prunes events older than `90 days` by

If you want to install a specific release of Sentry, use the tags/releases on the self-hosted repository.

We continuously push the Docker image for each commit made into [Sentry](https://github.com/getsentry/sentry), and other services such as [Snuba](https://github.com/getsentry/snuba) or [Symbolicator](https://github.com/getsentry/symbolicator) to [our Docker Hub](https://hub.docker.com/u/getsentry) and tag the latest version on master as `:nightly`. This is also usually what we have on sentry.io and what the install script uses. You can use a custom Sentry image, such as a modified version that you have built on your own, or refer a specific commit hash as the image tag by setting the `SENTRY_IMAGE` environment variable to that image name before running `./install.sh`:
We continuously push the Docker image for [Sentry](https://github.com/getsentry/sentry/pkgs/container/sentry) and other services such as [Snuba](https://github.com/getsentry/snuba/pkgs/container/snuba) and [Symbolicator](https://github.com/getsentry/symbolicator/pkgs/container/symbolicator) to GitHub Container Registry. The latest version on master is tagged with `:nightly`. This is also usually what we have on sentry.io and what the install script uses. You can use a custom Sentry image, such as a modified version that you have built on your own, or refer a specific commit hash as the image tag by setting the `SENTRY_IMAGE` environment variable to that image name before running `./install.sh`:

```bash
SENTRY_IMAGE=getsentry/sentry:83b138090a3078352e3f733de7209fb02ef4f98a ./install.sh
Comment thread
elramen marked this conversation as resolved.
Expand Down
2 changes: 1 addition & 1 deletion docs/product/relay/operating-guidelines.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This page reviews our guidelines for operation when self-hosting external Relays

## General Considerations

- We recommend [running Relay](/product/relay/getting-started/) using the officially provided Docker image (`getsentry/relay`) found on [DockerHub](https://hub.docker.com/r/getsentry/relay/) and tagged with its Git revision identifier, rather than building from source.
- We recommend [running Relay](/product/relay/getting-started/) using the officially provided Docker image (`getsentry/relay`) found on [GitHub Container Registry](https://github.com/getsentry/relay/pkgs/container/relay) and tagged with its Git revision identifier, rather than building from source.

- We recommend running at least two Relay instances (containers) with a reverse proxy (such as [HAProxy](https://www.haproxy.org/) or [Nginx](https://nginx.org)) in front of them for improved availability, simplified Relay updates, and SSL/TLS support.

Expand Down
Loading