Skip to content

Multiple frequency and Hop #29

Answered by hertzg
bsmith76s asked this question in Q&A
Sep 8, 2021 · 2 comments · 2 replies
Discussion options

You must be logged in to vote

Yes you can, the same way you would do without the docker container. All the commands that you write after docker run hertzg/rtl_433 get passed directly to the rtl_433 executable.

This is already documented in the readme under example usages section

without docker

$ rtl_433 -f 433.92M -H 3 -f 420.92M -H 3

using docker run

$ docker run hertzg/rtl_433 -f 433.92M -H 3 -f 420.92M -H 3

using docker-compose (yaml)

services:
  rtl433:
    image: hertzg/rtl_433:latest
    command:
      - '-f433.92M'
      - '-H3'
      - '-f420.92M'
      - '-H3'

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
0 replies
Answer selected by hertzg
Comment options

You must be logged in to vote
2 replies
@strider-84
Comment options

@bsmith76s
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants
Converted from issue

This discussion was converted from issue #28 on September 08, 2021 08:45.