dskaggs / docker-organize

MIT License
13 stars 2 forks source link

About

A Dockerized version of the file management utility Organize

Usage

Paths

Single Run Example

docker run -it
    -v "/path/to/config/":/root/.config/organize/
    -v "/path/to/logs/":/var/log/organize/
    -v "/source-folder/":/source
    -v "/destination-folder/":/destination
    docker-organize

CRONTAB Example

docker run -dit --rm --name docker-organize
    -v "/path/to/config/":/root/.config/organize/
    -v "/path/to/logs/":/var/log/organize/
    -v "/source-folder/":/source
    -v "/destination-folder/":/destination
    docker-organize
    "* * * * *"

The final line in the example above sets a crontab entry to run Organize once every minute.

Other sample crontab entries:

More configurations can be generated at Crontab Guru