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:
@@ -7,7 +7,7 @@
|
||||
|
||||
services:
|
||||
tracearr:
|
||||
image: ghcr.io/connorgallopo/tracearr:latest
|
||||
image: ghcr.io/connorgallopo/tracearr:supervised
|
||||
shm_size: 256mb # Required for PostgreSQL shared memory
|
||||
ports:
|
||||
- "${PORT:-3000}:3000"
|
||||
@@ -16,10 +16,6 @@ services:
|
||||
- PORT=3000
|
||||
- HOST=0.0.0.0
|
||||
- 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:-*}
|
||||
- LOG_LEVEL=${LOG_LEVEL:-info}
|
||||
volumes:
|
||||
|
||||
Reference in New Issue
Block a user