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
- Host: GitHub
- URL: https://github.com/ealcantara22/nextcloud
- Owner: ealcantara22
- Created: 2022-05-20T00:16:29.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-20T00:18:06.000Z (about 3 years ago)
- Last Synced: 2025-01-24T21:25:59.425Z (4 months ago)
- Language: Shell
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 => '',
),
```