Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/loicmahieu/docker-owncloudcmd

owncloudcmd
https://github.com/loicmahieu/docker-owncloudcmd

Last synced: 27 days ago
JSON representation

owncloudcmd

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 .
```