These are some guides for various 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.

38 lines
1.6 KiB

  1. # Owncloud
  2. This is a dockerized version of an owncloud server.
  3. The official container and documentation was made by [owncloud](https://hub.docker.com/_/owncloud).
  4. This docker-rebuild is made up by a ```docker-compose.yml``` file.
  5. The services in this files are explained seperately.
  6. ## Owncloud
  7. ### Volumes
  8. Set the following volumes in the ```volumes:``` section of the docker-compose file.
  9. | Volume-Name | Container mount | Description |
  10. | ---------------- | ---------------------- | ---------------------------- |
  11. | owncloud | /var/www/html | storage for owncloud plugins |
  12. | config | /var/www/html/config | storage for owncloud config |
  13. ### Ports
  14. Set the following ports in the ```ports:``` section.
  15. | Container Port | Recommended outside port | Protocol | Description |
  16. | -------------- | ------------------------ | -------- | ----------- |
  17. | 80 | 80 | TCP | WebUI |
  18. ## Maria DB
  19. ### Environment-variables
  20. Set the following environment-variables in the ```environment:``` section of the docker-compose file.
  21. | Name | Usage | Default |
  22. | ------------------- | ---------------------------- | ------- |
  23. | MYSQL_ROOT_PASSWORD | set the mysql admin password | |
  24. ### Volumes
  25. Set the following volumes in the ```volumes:``` section of the docker-compose file.
  26. | Volume-Name | Container mount | Description |
  27. | ---------------- | ---------------------- | ---------------------------- |
  28. | mariadb | /var/lib/mysql | storage for owncloud data |