Added draaft of nextcloud

This commit is contained in:
Simon 2020-05-24 20:19:35 +02:00
parent d635990b62
commit af6fcb5a9c
2 changed files with 27 additions and 0 deletions

1
nextcloud/.env Symbolic link
View File

@ -0,0 +1 @@
../.env

View File

@ -0,0 +1,26 @@
version: '3'
services:
nextcloud:
image: linuxserver/nextcloud
container_name: nextcloud
environment:
- PUID=1000
- PGID=1000
- TZ=${TZ}
volumes:
- ${DIR}/nextcloud/config:/config
- ${DIR}/data:/data
networks:
- backend
ports:
- 443:443
restart: unless-stopped
networks:
frontend:
external: true
backend:
external: false