owntracks / docker-recorder

Docker image for OwnTracks Recorder
151 stars 68 forks source link

Allow passing CLI args to recorder #82

Closed maximbaz closed 3 months ago

maximbaz commented 3 months ago

This lets e.g. pass --norevgeo using nicer docker compose syntax:

recorder:
    image: owntracks/recorder
    command:
        - --norevgeo

as opposed to the very hacky alternative which works with the current image:

recorder:
    image: owntracks/recorder
    environment:
        - OTR_TOPIC = owntracks/# --norevgeo
jpmens commented 3 months ago

Merged, thank you.