NextCloud prototype added.

This commit is contained in:
Alexey Skobkin 2020-04-30 01:05:11 +03:00
parent 46feab7ef4
commit e549e092a9
No known key found for this signature in database
GPG Key ID: 5D5CEF6F221278E7
3 changed files with 37 additions and 0 deletions

View File

@ -34,6 +34,7 @@ Not every stack is tested to fully work.
- [ ] mariadb-common (prototype state)
- [ ] mastodon (didn't work when tried to set up)
- [x] Murmur (Mumble server)
- [ ] NextCloud
- [x] Open Streaming Platform
- [x] OpenVPN
- [x] Portainer

16
nextcloud/.env.dist Normal file
View File

@ -0,0 +1,16 @@
PUID=1000
PGID=1000
TZ=Europe/Moscow
EXT_PORT=8443
# Volumes
# Database and configs
CONFIG_PATH=/path/to/config
# Location of user files
DATA_PATH=/path/to/data
# Logs
LOG_MAX_SIZE=5m
LOG_MAX_FILE=5

View File

@ -0,0 +1,20 @@
version: '3.7'
services:
nextcloud:
# https://hub.docker.com/r/linuxserver/nextcloud
image: linuxserver/nextcloud
container_name: nextcloud
#network_mode: "host"
ports:
- "${EXT_PORT}:443/tcp"
env_file: .env
volumes:
- "${CONFIG_PATH}:/config"
- "${DATA_PATH}:/data"
restart: unless-stopped
logging:
driver: "json-file"
options:
max-size: "${LOG_MAX_SIZE:-5m}"
max-file: "${LOG_MAX_FILE:-5}"