An open API service indexing awesome lists of open source software.

https://github.com/ealcantara22/nextcloud

Simple nextcloud docker-compose configuration based on the linuxserver team image
https://github.com/ealcantara22/nextcloud

Last synced: 2 months ago
JSON representation

Simple nextcloud docker-compose configuration based on the linuxserver team image

Awesome Lists containing this project

README

        

## Nextcloud
Simple [nextcloud](https://nextcloud.com/) docker-compose configuration based on the [linuxserver](https://docs.linuxserver.io/images/docker-nextcloud) team image

### How to use it
1. copy the env.example file and replace the values
```shell
shell cp .env.example .env
```
2. create the external network if it doesn't exist
```shell
docker network create
```
3. start the container
```shell
docker compose up -d
```
4. access https:// and follow the steps. The container
generates a self-signed certificate but if you use a reverse proxy such as traefik you
can disable this check for the container, read how [here](https://docs.linuxserver.io/faq#strict-proxy).
5. Finally, allow external requests by including your server ip as a trusted domain
```shell
nano /www/nextcloud/config/config.php
```
```shell
# config.php
'trusted_domains' =>
array (
0 => '...',
1 => '',
),
```