Short Description
owncloud-client docker image for ownCloud(https://owncloud.org/) synchronization
Full Description
Source
Tags and respective Dockerfile
links
latest
(Dockerfile)
Source repository on GitHub: zigarn/docker-owncloud-client
Configuration
Create a configuration folder with 2 files :
.netrc
: netrc configuration file for authentication on ownCloud server. E.gdefault login mylogin password mypassword
sync-exclude.lst
: list of files or folder to exclude in the format generated by the Ignored Files Editor
Use
Launch the docker image with:
- Volumes:
/data
: folder of synced data/log
: folder for sync logs/conf
: folder containing configuration files
- Env:
SERVER
: the ownCloud server URLPERIODICITY
: sync periodicity in crontab format (but DO NOT USE @xxx formats). Defaults to0 * * * *
(hourly)
E.g:
docker run --detach \
--volume ~/owncloud-sync:/data \
--volume /var/log:/log \
--volume /etc/owncloud-sync/:/conf \
--env SERVER=http://owncloud.server.com/ \
--env PERIODICITY='*/15 * * * *' \
zigarn/owncloud-client
Docker Pull Command
Owner
zigarn