Dockerized OwnCloud Client for instant use.
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.

29 lines
839 B

10 months ago
  1. # DockerOwncloudClient
  2. This is a dockerized version of a OwnCloud Client.
  3. ## Environment-variables
  4. Set the following variables with the -e tag.
  5. | Name | Usage | Default |
  6. | --------- | ----- | ------- |
  7. | USER | username of OwnCloud server | admin |
  8. | PASSWORD | password of OwnCloud server | admin |
  9. | URL | url of OwnCloud server (dont forget the http(s)://) | localhost |
  10. ## Volumes
  11. Set the following volumes with the -v tag.
  12. | Volume-Name | Container mount | Description |
  13. | ----------- | --------------- | ----------- |
  14. | data | /data | directory for the owncloud contents |
  15. ## Ports
  16. There are no ports that get opened up.
  17. ## Example run-command
  18. ``` docker run --name owncloudcli -v owncloudcli:/data --restart unless-stopped -e USER=admin1 -e PASSWORD=password1 -e URL='example.com' -d tiynger/owncloudclient ```