From 21173d3bb7a560a95f0533454152e4c14c4d5b5e Mon Sep 17 00:00:00 2001 From: Burak Yigit Kaya Date: Thu, 15 Oct 2020 19:57:45 +0300 Subject: [PATCH 1/2] ref: Switch all nightly images to `:nightly` tag --- .env | 8 ++++---- README.md | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.env b/.env index 85ca9bc038..3848c8c0eb 100644 --- a/.env +++ b/.env @@ -3,7 +3,7 @@ SENTRY_EVENT_RETENTION_DAYS=90 # You can either use a port number or an IP:PORT combo for SENTRY_BIND # See https://docs.docker.com/compose/compose-file/#ports for more SENTRY_BIND=9000 -SENTRY_IMAGE=getsentry/sentry:latest -SNUBA_IMAGE=getsentry/snuba:latest -RELAY_IMAGE=getsentry/relay:latest -SYMBOLICATOR_IMAGE=getsentry/symbolicator:latest +SENTRY_IMAGE=getsentry/sentry:nightly +SNUBA_IMAGE=getsentry/snuba:nightly +RELAY_IMAGE=getsentry/relay:nightly +SYMBOLICATOR_IMAGE=getsentry/symbolicator:nightly diff --git a/README.md b/README.md index 4d7fea2536..aad0b7801d 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ If you have any issues or questions, our [Community Forum](https://forum.sentry. If you want to install a specific release of Sentry, use the tags/releases on this repo. -We continously 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 `:latest`. 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 simply a specific commit hash by setting the `SENTRY_IMAGE` environment variable to that image name before running `./install.sh`: +We continously 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 :nightly 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 simply a specific commit hash by setting the `SENTRY_IMAGE` environment variable to that image name before running `./install.sh`: ```shell SENTRY_IMAGE=getsentry/sentry:83b1380 ./install.sh From 8cc7042ec2d284a6f25dc79a9390af371e2c98eb Mon Sep 17 00:00:00 2001 From: Burak Yigit Kaya Date: Thu, 15 Oct 2020 21:24:25 +0300 Subject: [PATCH 2/2] fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index aad0b7801d..5f89250ce8 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ If you have any issues or questions, our [Community Forum](https://forum.sentry. If you want to install a specific release of Sentry, use the tags/releases on this repo. -We continously 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 :nightly 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 simply a specific commit hash by setting the `SENTRY_IMAGE` environment variable to that image name before running `./install.sh`: +We continously 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 simply a specific commit hash by setting the `SENTRY_IMAGE` environment variable to that image name before running `./install.sh`: ```shell SENTRY_IMAGE=getsentry/sentry:83b1380 ./install.sh