fix traccar

This commit is contained in:
peaklabs-dev
2024-10-09 16:20:11 +02:00
parent e583d64dc6
commit 097f24394c
2 changed files with 16 additions and 9 deletions

BIN
public/svgs/traccar.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@@ -1,18 +1,18 @@
# documentation: https://www.traccar.org/documentation/ # documentation: https://www.traccar.org/documentation/
# slogan: Traccar is a free and open source modern GPS tracking system. # slogan: Traccar is a free and open source modern GPS tracking system.
# tags: traccar,gps,tracking,open,source # tags: traccar,gps,tracking,open,source
# logo: # logo: svgs/traccar.png
# port: 8082 # port: 8082
services: services:
traccar: traccar:
image: traccar/traccar image: traccar/traccar:latest
environment: environment:
- SERVICE_FQDN_TRACCAR_8082 - SERVICE_FQDN_TRACCAR_8082
- SERVICE_FQDN_TRACCAR_API_5159 - SERVICE_FQDN_TRACCARAPI_5159
- CONFIG_USE_ENVIRONMENT_VARIABLES=true - CONFIG_USE_ENVIRONMENT_VARIABLES=${CONFIG_USE_ENVIRONMENT_VARIABLES:-true}
- DATABASE_USER=$SERVICE_USER_POSTGRES - DATABASE_USER=${SERVICE_USER_POSTGRES}
- DATABASE_PASSWORD=$SERVICE_PASSWORD_POSTGRES - DATABASE_PASSWORD=${SERVICE_PASSWORD_POSTGRES}
volumes: volumes:
- type: bind - type: bind
source: ./srv/traccar/conf/traccar.xml source: ./srv/traccar/conf/traccar.xml
@@ -28,14 +28,21 @@ services:
depends_on: depends_on:
postgres: postgres:
condition: service_healthy condition: service_healthy
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:8082/ping"]
interval: 30s
timeout: 10s
retries: 3
start_period: 15s
postgres: postgres:
image: postgres:16-alpine image: postgres:16-alpine
environment: environment:
- POSTGRES_USER=$SERVICE_USER_POSTGRES - POSTGRES_USER=$SERVICE_USER_POSTGRES
- POSTGRES_PASSWORD=$SERVICE_PASSWORD_POSTGRES - POSTGRES_PASSWORD=${SERVICE_PASSWORD_POSTGRES}
- POSTGRES_DB=traccar - POSTGRES_DB=${POSTGRESQL_DATABASE:-traccar}
volumes: volumes:
- traccar-db-data:/var/lib/postgresql/data/ - traccar-postgresql-data:/var/lib/postgresql/data/
healthcheck: healthcheck:
test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"] test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"]
interval: 5s interval: 5s