chore: add README and LICENSE

This commit is contained in:
2021-10-15 14:11:18 +02:00
parent e869525f2c
commit 85d18f314e
4 changed files with 533 additions and 0 deletions

View File

@ -0,0 +1,23 @@
# `finallycoffee.nextcloud.nextcloud-apps` ansible role
This role can be used to install/update, remove, enable and disable
nextcloud apps.
## Examples
```yaml
nextcloud_apps:
# Install cospend app
- name: cospend
state: present
# Make sure mail app is installed, but not enabled
- name: mail
state: present
enabled: no
# Uninstall photos app
- name: photos
state: absent
# Make sure federation app is always up-to-date
- name: federation
state: latest
```

View File

@ -0,0 +1,8 @@
# `finallycoffee.nextcloud.nextcloud` ansible role
This role can be used to deploy nextcloud in a docker container,
regardless of wether the `apache` or `fpm` docker image is used.
It provides various common (optimization) configuration options
and creates a user on the host which is mapped into the container,
so the host file permissions remain comprehensible.