Skip to content

Commit 3b07bd3

Browse files
committed
chore: use :main tag for GHCR image
1 parent 3639499 commit 3b07bd3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
# Database migrations (runs once on startup, then exits)
33
migrate:
4-
image: ghcr.io/rmdes/newsdiff:latest
4+
image: ghcr.io/rmdes/newsdiff:main
55
command: ["node", "--import", "tsx/esm", "src/lib/server/db/migrate.ts"]
66
environment:
77
DATABASE_URL: postgres://${POSTGRES_USER:-newsdiff}:${POSTGRES_PASSWORD:?Set POSTGRES_PASSWORD}@postgres:5432/${POSTGRES_DB:-newsdiff}
@@ -12,7 +12,7 @@ services:
1212

1313
# SvelteKit web app + feed poller + syndicator workers
1414
app:
15-
image: ghcr.io/rmdes/newsdiff:latest
15+
image: ghcr.io/rmdes/newsdiff:main
1616
command: ["node", "build/index.js"]
1717
environment:
1818
DATABASE_URL: postgres://${POSTGRES_USER:-newsdiff}:${POSTGRES_PASSWORD}@postgres:5432/${POSTGRES_DB:-newsdiff}
@@ -42,7 +42,7 @@ services:
4242

4343
# ActivityPub bot (handles incoming federation requests)
4444
bot:
45-
image: ghcr.io/rmdes/newsdiff:latest
45+
image: ghcr.io/rmdes/newsdiff:main
4646
command: ["node", "--import", "tsx/esm", "src/bot/index.ts"]
4747
environment:
4848
REDIS_HOST: redis

0 commit comments

Comments
 (0)