fix(local deploy): removes port from mercure, uses tag instead of latest

This commit is contained in:
2025-05-25 10:22:10 -05:00
parent c763d67fcb
commit 76531f397f

View File

@@ -1,6 +1,6 @@
services:
app:
image: registry.caldwell.digital/home/torsearch-app:latest
image: registry.caldwell.digital/home/torsearch-app:${TAG}
ports:
- '8001:80'
deploy:
@@ -10,7 +10,7 @@ services:
worker:
image: registry.caldwell.digital/home/torsearch-worker:latest
image: registry.caldwell.digital/home/torsearch-worker:${TAG}
volumes:
- /mnt/media/downloads/movies:/var/download/movies
- /mnt/media/downloads/tvshows:/var/download/tvshows
@@ -23,7 +23,7 @@ services:
scheduler:
image: registry.caldwell.digital/home/torsearch-scheduler:latest
image: registry.caldwell.digital/home/torsearch-scheduler:${TAG}
volumes:
- ./downloads:/var/download
restart: always
@@ -34,8 +34,6 @@ services:
mercure:
image: dunglas/mercure
restart: unless-stopped
ports:
- "3001:80"
environment:
SERVER_NAME: ':80'
MERCURE_PUBLISHER_JWT_KEY: '!ChangeThisMercureHubJWTSecretKey!'