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.

30 lines
1.2 KiB

10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
9 months ago
10 months ago
1 month ago
1 month 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. ## Example run-command
  16. Either use the docker image `tiynger/owncloudclient` or run
  17. `docker build . -t owncloudclient` in the top directory of this repository.
  18. If so you need to change the command below apropiately
  19. (`tiynger/owncloudclient` to `owncloudclient`).
  20. `docker run --name owncloudcli -v owncloudcli:/data --restart unless-stopped -e USER=admin1 -e PASSWORD=password1 -e URL='example.com' -d tiynger/owncloudclient`