Seite 1 von 1

[Docker] Docker compose für Traccar

Verfasst: Do 13. Jan 2022, 12:40
von terdt
Hallo,
ich versuche das Traccar GPS Tracking System über das docker-compose.yml zu installieren. Der Traccar Container wird
erstellt aber nicht gestartet.
Meine Eintrag in der docker-compose.yml sind wie folgt aus.
traccar:
container_name: traccar
image: traccar/traccar:latest
ports:
- "8082:8082"
- "5000-5150:5000-5150"
- "5000-5150:5000-5150/udp"
volumes:
- ./volumes/traccar/logs:/opt/traccar/logs:rw
- ./volumes/traccar/data/:/opt/traccar/data:rw
- ./volumes/traccar/traccar.xml:/opt/traccar/conf/traccar.xml:rw
restart: always

Und ich bekomme folgende Fehlermeldung:
ERROR: for traccar UnixHTTPConnectionPool(host='localhost', port=None): Read timed out. (read timeout=60)
ERROR: An HTTP request took too long to complete. Retry with --verbose to obtain debug information.
If you encounter this issue regularly because of slow network conditions, consider setting COMPOSE_HTTP_TIMEOUT to a higher value (current value: 60).

Ich habe auch festgestellt, dass das anstatt der Datei traccar.xml ein Ordner erstellt wird.
Vielleicht hat jemand eine Idee woran das liegt.

Viele Grüße Thomas