[Help]: Can't Connect to Time Machine #170
-
Describe the BugI created an docker container, quite similar settings as the template one, but ends up not connecting. Expected BehaviorThe container should run normally Steps to ReproduceI used the docker run command, then connect in the Finder App. How You're Launching the Container
Container Logs
Additional ContextNo response |
Beta Was this translation helpful? Give feedback.
Replies: 8 comments
-
This isn't relevant to the connection issue but your path for the persistent data volume isn't right. This You do not want to set |
Beta Was this translation helpful? Give feedback.
-
Let me know if that doesn't solve the problem. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Can you ping the hostname |
Beta Was this translation helpful? Give feedback.
-
Yep, I could totally ping it normally, since I use it for ssh too |
Beta Was this translation helpful? Give feedback.
-
Not sure why it's not working then. I am able to take your exact command and it get working: tm_working.movTry increasing the log verbosity from |
Beta Was this translation helpful? Give feedback.
-
got it, I'll try that |
Beta Was this translation helpful? Give feedback.
-
I've used the same as above and works like a charm. Thank you for posting. |
Beta Was this translation helpful? Give feedback.
This isn't relevant to the connection issue but your path for the persistent data volume isn't right. This
-v /hdd/timemachine:/opt/timemachine \
should be-v /hdd/timemachine:/opt/KentakoongTimeMachine \
because you tell it to useKentakoongTimeMachine
for the username. Your data would be stored inside the container and lost when you update the container if you don't correct this.You do not want to set
ADVERTISED_HOSTNAME
because you're telling your machine to try to talk to a host at that hostname. For one, the hostname isn't a valid hostname that you're setting and I am guessing you don't have a hostname set in DNS for it. It should work fine after removing that env var line.