Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/loicmahieu/docker-owncloudcmd
owncloudcmd
https://github.com/loicmahieu/docker-owncloudcmd
Last synced: 27 days ago
JSON representation
owncloudcmd
- Host: GitHub
- URL: https://github.com/loicmahieu/docker-owncloudcmd
- Owner: LoicMahieu
- Created: 2014-12-31T11:06:27.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-21T22:48:50.000Z (almost 10 years ago)
- Last Synced: 2024-04-11T13:05:54.084Z (9 months ago)
- Size: 145 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-owncloudcmd
Docker image for `owncloudcmd`: command line client that can be used to synchronize [ownCloud](http://owncloud.org/).
## Usage
Pull the automated build from [registry](https://registry.hub.docker.com/u/loicmahieu/owncloudcmd):
```
docker pull loicmahieu/owncloudcmd
```Run it
```
docker run \
--rm \
-t loicmahieu/owncloudcmd \
[OPTION] \
\
```See Owncloud documentation: [owncloud-commandline-client](http://doc.owncloud.org/desktop/1.7/advancedusage.html#owncloud-commandline-client)
### Sync example
```
docker run \
--rm \
-v /home/loic/owncloud:/owncloud \
-t loicmahieu/owncloudcmd \
--trust \
/owncloud \
ownclouds://loic:[email protected]/owncloud/remote.php/webdav
```## Build
```
docker build --rm -t owncloudcmd .
```