Compare commits

...

No commits in common. "main" and "donotclone" have entirely different histories.

3 changed files with 3 additions and 49 deletions

12
LICENSE
View File

@ -1,12 +0,0 @@
Copyright (C) 2024 by Kris Lamoureux <kris@lamoureux.io>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

View File

@ -1,36 +0,0 @@
# Nextcloud Deployment Repository
This repository contains configurations for deploying Nextcloud using Docker.
Nextcloud is an open-source platform that provides secure data storage,
sharing, and access across devices. It is a self-hosted alternative to cloud
storage services and offers features like file sharing, calendar and contact
management, and collaborative editing tools.
## Docker Configuration
- `IMAGE`: Specifies the Docker image for Nextcloud (default: `nextcloud`).
- `VERSION`: Specifies the tag of the Docker image (default: `latest`).
- `NAME`: Sets the name of the Docker container (default: `nextcloud`).
## Nextcloud Configuration
- `PHP_MEMORY_LIMIT`: Sets the memory limit for PHP processes (default: `1024M`).
## Traefik Configuration
- `ROUTER`: Defines the router name for Traefik to use (default: `nextcloud`).
- `DOMAIN`: Specifies the domain for accessing Nextcloud (default: `cloud.local.krislamo.org`).
- `ENTRYPOINT`: Configures the Traefik entrypoint (default: `web`).
- `ENABLE_TLS`: Toggles TLS encryption (default: `false`).
- `CONTAINER_PORT`: Specifies the HTTP port used for Traefik (default: `80`).
- `MIDDLEWARES`: Lists the middlewares applied to the Nextcloud service (default: `nextcloud-webdav`).
## Network Configuration
- `NETWORK`: Designates the Docker network to be used (default: `traefik`).
## Volume Configuration
- `DATA`: Required. Specifies the path for persistent data storage for Nextcloud.
## License
This project is released under the 0BSD license, which allows for unrestricted
use, modification, and distribution.

View File

@ -1,3 +1,5 @@
version: '3.8'
networks:
traefik:
external: true
@ -18,7 +20,7 @@ services:
- "traefik.http.middlewares.${ROUTER:-nextcloud}-webdav.redirectregex.replacement=https://$${1}/remote.php/dav/"
- "traefik.http.middlewares.${ROUTER:-nextcloud}-webdav.redirectregex.permanent=true"
- "traefik.docker.network=${NETWORK:-traefik}"
- "traefik.enable=${ENABLE:-true}"
- "traefik.enable=${TRAEFIK_ENABLE:-true}"
networks:
- "${NETWORK:-traefik}"
extra_hosts: