NextCloud prototype added.
This commit is contained in:
parent
46feab7ef4
commit
e549e092a9
|
@ -34,6 +34,7 @@ Not every stack is tested to fully work.
|
||||||
- [ ] mariadb-common (prototype state)
|
- [ ] mariadb-common (prototype state)
|
||||||
- [ ] mastodon (didn't work when tried to set up)
|
- [ ] mastodon (didn't work when tried to set up)
|
||||||
- [x] Murmur (Mumble server)
|
- [x] Murmur (Mumble server)
|
||||||
|
- [ ] NextCloud
|
||||||
- [x] Open Streaming Platform
|
- [x] Open Streaming Platform
|
||||||
- [x] OpenVPN
|
- [x] OpenVPN
|
||||||
- [x] Portainer
|
- [x] Portainer
|
||||||
|
|
16
nextcloud/.env.dist
Normal file
16
nextcloud/.env.dist
Normal 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
|
20
nextcloud/docker-compose.yml
Normal file
20
nextcloud/docker-compose.yml
Normal 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}"
|
Loading…
Reference in a new issue