Skip to content
Discussion options

You must be logged in to vote

Hi Keros,

How it currently works:
Dockman doesn't actually transfer your compose files to the remote host. Instead, it sends the compose configuration directly to the Docker API on the remote machine. Only certain bind mounts that are within the compose root directory get transferred to the remote host - your actual compose files never leave your local machine.

Example:
Let's say you have this structure locally:

/home/user/my-project/  (DOCKMAN_COMPOSE_ROOT)
├── docker-compose.yml
├── config/
│   └── nginx.conf
└── data/
    └── app-data/

And your compose file has:

services:
  nginx:
    image: nginx
    volumes:
      - ./config/nginx.conf:/etc/nginx/nginx.conf
      - ./data:/var/lib/data

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Answer selected by jp-keros
Comment options

You must be logged in to vote
1 reply
@RA341
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
2 participants
Converted from issue

This discussion was converted from issue #37 on July 21, 2025 14:31.