initial checkin

This commit is contained in:
Radar231 2021-09-11 23:30:06 -04:00
commit bc1b4ff853
4 changed files with 46 additions and 0 deletions

21
README.md Normal file
View File

@ -0,0 +1,21 @@
# nextcloud docker deployment
## Introduction
This is a docker-compose configuration to deploy a nextcloud container.
This configuration requires an instance of nginx-proxy-manager to act as a
reverse proxy for the site.
## Links
* https://hub.docker.com/r/linuxserver/nextcloud
## Directories
<pre>
docker_nextcloud/
├── config
└── data
</pre>

0
config/.placeholder Normal file
View File

0
data/.placeholder Normal file
View File

25
docker-compose.yml Normal file
View File

@ -0,0 +1,25 @@
---
version: "2.1"
services:
nextcloud:
image: ghcr.io/linuxserver/nextcloud
container_name: nextcloud
environment:
- PUID=1000
- PGID=1000
- TZ=America/Toronto
volumes:
- ./config:/config
- ./data:/data
# ports:
# - 80:80
# - 443:443
restart: unless-stopped
networks:
default:
external: true
name: npm-backend
# EOF