Replies: 1 comment
-
Since it does what you want and you say that it works for you then it's correct. 😁
Depends who you ask, but if you want to automatically restart on exit. or "crash", The If you are talking about having a 44 second delay between restarts, theres probably something else that's wrong that's forcing you to do such hacks
Assuming you are doing homelab, as long as it works for you keep at at. On the other hand Containers are not VMs and do not treat them like such but that's out side of the scope of this project. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
As a Docker newbie user, I'm trying to apply this command
while true; do rtl_433 -R 32 -f 868300000 -Y classic -s 250k -E quit; sleep 44; donediscussed here merbanan/rtl_433#3347
to the container.
So, if I understand correctly, since "while" needs to run before rtl_433, I need to override the container's ENTRYPOINT...
After some hard work 😅, I came up with this setup:
which seems to work!
Is it correct, or am I doing something wrong? Any suggestions?
Thanks for any help.
Beta Was this translation helpful? Give feedback.
All reactions