1
0
Fork 0
mirror of https://github.com/yavook/kiwi-nextcloud.git synced 2024-11-21 14:53:00 +00:00

documentation

This commit is contained in:
Jörn-Michael Miehe 2022-03-10 01:56:37 +01:00
parent e8e640297b
commit aaf4758513
2 changed files with 47 additions and 0 deletions

21
LICENSE Normal file
View file

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2022 yavook.de
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

26
README.md Normal file
View file

@ -0,0 +1,26 @@
# kiwi-nextcloud
[![Build Status](https://github.drone.yavook.de/api/badges/yavook/kiwi-nextcloud/status.svg)](https://github.drone.yavook.de/yavook/kiwi-nextcloud)
> `kiwi` - simple, consistent, powerful
Convenience bundle for [`kiwi-scp`](https://github.com/yavook/kiwi-scp). Also [on Docker Hub](https://hub.docker.com/r/yavook/kiwi-nextcloud).
## Use Case
`kiwi-nextcloud` bundles the Nextcloud fpm with an nginx proxy as one container. These are commonly deployed as separate containers [like this](https://github.com/nextcloud/docker/blob/master/.examples/docker-compose/insecure/mariadb/fpm/docker-compose.yml).
The `web` container in these setups is often overlooked and the additional `nginx.conf` needed is an unnecessary source for errors. Standardize your `kiwi-scp` instances!
Each `kiwi-nextcloud:n` image derives from the official `nextcloud:n-fpm-alpine` images and recognizes the same docker options.
## Typical usage in `docker-compose.yml` sections:
```yaml
wep-app:
image: yavook/kiwi-nextcloud:n
volumes:
- nextcloud:/var/www/html
```
Refer to the official Nextcloud Guides on how to set up your instance.