Preface
org-mobile allows to push and pull your tasks to a predefined path. This path could be your docked phone or any other protocol which tramp supports.
Example
Configuration
You need to define both paths. One for the directory where to push the files and one file where you save all your captures over the day.
(use-package! org-mobile
:after org
:bind (("C-c m p" . org-mobile-push)
("C-c m l" . org-mobile-pull))
:config
(setq org-mobile-directory (expand-file-name "/sftp:nixlab:/mnt/share/org/")
org-mobile-markup (cons "" "")
org-mobile-inbox-for-pull (expand-file-name "~/org/mobileorg.org")))