Skip to content

final-gene/docker-hub-lftp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LFTP client

Docker build and publish

This is an image to run the lftp client. Based on the idea from Sebastian Mellor => Light-weight deployment environment

How to use this image

Run the lftp image:

docker run \
    --rm \
    --volume "$(pwd)":/app \
    finalgene/lftp

Send data

docker run \
    --rm \
    --volume "$(pwd)":/app \
    finalgene/lftp open -u <user>,<password> -p <port> <host>; cd <remote directory>; mirror --reverse --verbose=3 <local directory>

Take a look at the man page to get detailed information about the available options

Quick reference