Sign inSign up

steveltn/rsync-deploy

By steveltn

Updated over 10 years ago

rsync-deploy is a docker container serves static files which can be uploaded via rsync.

Image
0

446

steveltn/rsync-deploy repository overview

rsync-deploy

rsync-deploy is a docker container serves static files which can be uploaded via rsync.

Usage

Use the following docker-compose.yml:

rsync-deploy:
  build: ./
  ports:
    - "2222:22"
    - "80:80"
  environment:
    DEPLOY_KEY_URL: https://github.com/yourname.keys

Then upload the files via rsync:

rsync -a -e "ssh -p 2222" local_dir rsync@remote_domain:/rsync

The files will be available at http://remote_domain:8080.

Tag summary

Content type

Image

Digest

Size

7.7 MB

Last updated

over 10 years ago

docker pull steveltn/rsync-deploy