mirror of
https://github.com/JG2401/HetznerDokployLab.git
synced 2026-08-28 20:20:15 +00:00
nextcloud & radarr & sonarr
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## Apps
|
||||
|
||||
### External storage support
|
||||
|
||||
Enable `External storage support` and create a new external storage in the admin-settings.
|
||||
|
||||
- Foldername: `StorageBox`
|
||||
- External storage: `local`
|
||||
- Authentication: `None`
|
||||
- Configuration: `/mnt/storagebox/data`
|
||||
- Available for `All people`
|
||||
|
||||
|
||||
|
||||
### File access control (?)
|
||||
|
||||
|
||||
29
projects/nextcloud/docker-compose.yml
Normal file
29
projects/nextcloud/docker-compose.yml
Normal file
@@ -0,0 +1,29 @@
|
||||
services:
|
||||
nextcloud:
|
||||
image: nextcloud:30.0.2
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- nextcloud_data:/var/www/html
|
||||
- /mnt/storagebox-crypt/nextcloud:/mnt/storagebox
|
||||
environment:
|
||||
- NEXTCLOUD_TRUSTED_DOMAINS=${NEXTCLOUD_DOMAIN}
|
||||
- MYSQL_HOST=nextcloud_db
|
||||
- MYSQL_DATABASE=nextcloud
|
||||
- MYSQL_USER=nextcloud
|
||||
- MYSQL_PASSWORD=${MYSQL_SECRET_PASSWORD}
|
||||
- OVERWRITEPROTOCOL=https
|
||||
|
||||
nextcloud_db:
|
||||
image: mariadb
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- nextcloud_db_data:/var/lib/mysql
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=${MYSQL_SECRET_PASSWORD_ROOT}
|
||||
- MYSQL_DATABASE=nextcloud
|
||||
- MYSQL_USER=nextcloud
|
||||
- MYSQL_PASSWORD=${MYSQL_SECRET_PASSWORD}
|
||||
|
||||
volumes:
|
||||
nextcloud_data:
|
||||
nextcloud_db_data:
|
||||
Reference in New Issue
Block a user