mirror of https://github.com/tiyn/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
287 B
12 lines
287 B
5 years ago
|
#!/bin/sh
|
||
|
docker stop owncloudcli
|
||
|
docker rm owncloudcli
|
||
|
docker pull tiynger/owncloudclient
|
||
|
docker run --name owncloudcli \
|
||
|
--restart unless-stopped \
|
||
|
-v owncloudcli:/data \
|
||
|
-e USER='user' \
|
||
|
-e PASSWORD='password' \
|
||
|
-e URL='https://subdomain.domain.tld' \
|
||
|
-d tiynger/owncloudclient
|