From 488ecde979e48d5350c8bc22afc7b1e0449617ef Mon Sep 17 00:00:00 2001 From: Chris Arderne Date: Fri, 3 Jul 2026 13:12:00 +0100 Subject: [PATCH] chore: use latest self-host compose images --- docs/self-hosting/docker.mdx | 2 +- hosting/docker/.env.example | 4 ++-- hosting/docker/webapp/docker-compose.yml | 2 +- hosting/docker/worker/docker-compose.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/self-hosting/docker.mdx b/docs/self-hosting/docker.mdx index 665d6fc5875..62eea5c6110 100644 --- a/docs/self-hosting/docker.mdx +++ b/docs/self-hosting/docker.mdx @@ -339,7 +339,7 @@ There are several reasons to lock the version of your Docker images: By default, the images will point at the latest versioned release via the `latest` tag. You can override this by specifying a different tag in your `.env` file. For example: ```bash -TRIGGER_IMAGE_TAG=v4.0.0 +TRIGGER_IMAGE_TAG=v4.5.0 ``` ## Task events diff --git a/hosting/docker/.env.example b/hosting/docker/.env.example index 4c14201d1ab..cc30d9c1a4b 100644 --- a/hosting/docker/.env.example +++ b/hosting/docker/.env.example @@ -34,8 +34,8 @@ DIRECT_URL=postgresql://postgres:unsafe-postgres-pw@postgres:5432/main?schema=pu # Trigger image tag # - This is the version of the webapp and worker images to use, they should be locked to a specific version in production -# - For example: TRIGGER_IMAGE_TAG=v4.0.0-v4-beta.21 -TRIGGER_IMAGE_TAG=v4-beta +# - For example: TRIGGER_IMAGE_TAG=v4.5.0 +TRIGGER_IMAGE_TAG=latest # Webapp # - These should generally be set to the same value diff --git a/hosting/docker/webapp/docker-compose.yml b/hosting/docker/webapp/docker-compose.yml index 7b2de751b7f..c969dbd5f2e 100644 --- a/hosting/docker/webapp/docker-compose.yml +++ b/hosting/docker/webapp/docker-compose.yml @@ -9,7 +9,7 @@ x-logging: &logging-config services: webapp: - image: ghcr.io/triggerdotdev/trigger.dev:${TRIGGER_IMAGE_TAG:-v4-beta} + image: ghcr.io/triggerdotdev/trigger.dev:${TRIGGER_IMAGE_TAG:-latest} restart: ${RESTART_POLICY:-unless-stopped} logging: *logging-config ports: diff --git a/hosting/docker/worker/docker-compose.yml b/hosting/docker/worker/docker-compose.yml index a69605949e4..ba05720530b 100644 --- a/hosting/docker/worker/docker-compose.yml +++ b/hosting/docker/worker/docker-compose.yml @@ -9,7 +9,7 @@ x-logging: &logging-config services: supervisor: - image: ghcr.io/triggerdotdev/supervisor:${TRIGGER_IMAGE_TAG:-v4-beta} + image: ghcr.io/triggerdotdev/supervisor:${TRIGGER_IMAGE_TAG:-latest} restart: ${RESTART_POLICY:-unless-stopped} logging: *logging-config depends_on: