Skip to content

Commit 6443b19

Browse files
committed
chore: use latest self-host compose images
1 parent d8123ba commit 6443b19

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/self-hosting/docker.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ There are several reasons to lock the version of your Docker images:
339339
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:
340340
341341
```bash
342-
TRIGGER_IMAGE_TAG=v4.0.0
342+
TRIGGER_IMAGE_TAG=v4.5.0
343343
```
344344
345345
## Task events

hosting/docker/.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ DIRECT_URL=postgresql://postgres:unsafe-postgres-pw@postgres:5432/main?schema=pu
3434

3535
# Trigger image tag
3636
# - This is the version of the webapp and worker images to use, they should be locked to a specific version in production
37-
# - For example: TRIGGER_IMAGE_TAG=v4.0.0-v4-beta.21
38-
TRIGGER_IMAGE_TAG=v4-beta
37+
# - For example: TRIGGER_IMAGE_TAG=v4.5.0
38+
TRIGGER_IMAGE_TAG=latest
3939

4040
# Webapp
4141
# - These should generally be set to the same value

hosting/docker/webapp/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ x-logging: &logging-config
99

1010
services:
1111
webapp:
12-
image: ghcr.io/triggerdotdev/trigger.dev:${TRIGGER_IMAGE_TAG:-v4-beta}
12+
image: ghcr.io/triggerdotdev/trigger.dev:${TRIGGER_IMAGE_TAG:-latest}
1313
restart: ${RESTART_POLICY:-unless-stopped}
1414
logging: *logging-config
1515
ports:

hosting/docker/worker/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ x-logging: &logging-config
99

1010
services:
1111
supervisor:
12-
image: ghcr.io/triggerdotdev/supervisor:${TRIGGER_IMAGE_TAG:-v4-beta}
12+
image: ghcr.io/triggerdotdev/supervisor:${TRIGGER_IMAGE_TAG:-latest}
1313
restart: ${RESTART_POLICY:-unless-stopped}
1414
logging: *logging-config
1515
depends_on:

0 commit comments

Comments
 (0)