Update compose.yaml for Tracearr service to change the image tag from 'latest' to 'supervised' and remove unnecessary environment variables for DATABASE_URL and REDIS_URL. This streamlines the configuration and focuses on essential settings for deployment.

This commit is contained in:
Nikholas Pcenicni
2026-03-30 22:53:47 -04:00
parent 16948c62f9
commit 89be30884e

View File

@@ -7,7 +7,7 @@
services: services:
tracearr: tracearr:
image: ghcr.io/connorgallopo/tracearr:latest image: ghcr.io/connorgallopo/tracearr:supervised
shm_size: 256mb # Required for PostgreSQL shared memory shm_size: 256mb # Required for PostgreSQL shared memory
ports: ports:
- "${PORT:-3000}:3000" - "${PORT:-3000}:3000"
@@ -16,10 +16,6 @@ services:
- PORT=3000 - PORT=3000
- HOST=0.0.0.0 - HOST=0.0.0.0
- TZ=${TZ:-UTC} - TZ=${TZ:-UTC}
- DATABASE_URL=postgres://tracearr:${DB_PASSWORD:-tracearr}@timescale:5432/tracearr
- REDIS_URL=redis://redis:6379
- JWT_SECRET=${JWT_SECRET}
- COOKIE_SECRET=${COOKIE_SECRET}
- CORS_ORIGIN=${CORS_ORIGIN:-*} - CORS_ORIGIN=${CORS_ORIGIN:-*}
- LOG_LEVEL=${LOG_LEVEL:-info} - LOG_LEVEL=${LOG_LEVEL:-info}
volumes: volumes: