Metadata-Version: 2.1
Name: docker-remote-sync
Version: 0.2.7
Summary: 
Author: Vamsi Talupula
Author-email: tanavamsikrishna@outlook.com
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: colorama (>=0.4.6,<0.5.0)
Requires-Dist: docker (>=6.1.3,<7.0.0)
Requires-Dist: fabric (>=3.2.2,<4.0.0)
Description-Content-Type: text/markdown

A utility to sync docker images between 2 machines while transferring only the changed layers

# Installation
`pipx install docker-remote-sync` or `pip install docker-remote-sync`

# Usage
```
usage: docker-remote-sync [-h] [--port PORT] image_name remote remote_cache_folder

Utility to sync updated docker layers between 2 docker host machines

positional arguments:
  image_name           Docker image (along with tag) on local machine
  remote               Address of remote with
  remote_cache_folder  Cache folder on remote

options:
  -h, --help           show this help message and exit
  --port PORT          Alternate ssh port on remote
```

- Do not delete the cache folder on the remote machine to be able to take advantage of incremental file sync

Example:
`docker-remote-sync myalpine:latest remotehost "~/myalpine_cache"`
