adding untested changes and new dockers
This commit is contained in:
18
media/jellyfin/docker-compose.yml
Normal file
18
media/jellyfin/docker-compose.yml
Normal file
@@ -0,0 +1,18 @@
|
||||
---
|
||||
services:
|
||||
jellyfin:
|
||||
image: lscr.io/linuxserver/jellyfin:latest
|
||||
container_name: jellyfin
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Etc/UTC
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- ./data:/data
|
||||
ports:
|
||||
- 8096:8096
|
||||
- 8920:8920 #optional
|
||||
- 7359:7359/udp #optional
|
||||
- 1900:1900/udp #optional
|
||||
restart: unless-stopped
|
||||
3
media/navidrome/README.md
Normal file
3
media/navidrome/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# Base navidrome with my configurations
|
||||
|
||||
You can edit `./data/navidrome` to change setting based on your preference, you can find the full configuration document [here](https://www.navidrome.org/docs/usage/configuration/options/)
|
||||
6
media/navidrome/data/navidrome.toml
Normal file
6
media/navidrome/data/navidrome.toml
Normal file
@@ -0,0 +1,6 @@
|
||||
BaseUrl = 'yourdaminhere'
|
||||
AutoImportPlaylists = false
|
||||
DefaultTheme = 'AMusic'
|
||||
DefaultDownloadableShare = true
|
||||
EnableExternalServices = false
|
||||
EnableSharing = true
|
||||
14
media/navidrome/docker-compose.yml
Normal file
14
media/navidrome/docker-compose.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
services:
|
||||
navidrome:
|
||||
image: deluan/navidrome:latest
|
||||
container_name: navidrome
|
||||
user: 1000:1000 # should be owner of volumes
|
||||
ports:
|
||||
- "4533:4533"
|
||||
restart: unless-stopped
|
||||
#environment:
|
||||
# Optional: put your config options customization here. Examples:
|
||||
# ND_LOGLEVEL: debug
|
||||
volumes:
|
||||
- "./data:/data"
|
||||
- "./music:/music:ro"
|
||||
6
media/nextcloud/.env.example
Normal file
6
media/nextcloud/.env.example
Normal file
@@ -0,0 +1,6 @@
|
||||
PUID=1000
|
||||
PGID=1001
|
||||
TZ=America/Chicago
|
||||
PORT=8443
|
||||
MYSQL_ROOT_PASSWORD=changeme
|
||||
DATABASE_PASSWORD=changeme
|
||||
32
media/nextcloud/docker-compose.yml
Normal file
32
media/nextcloud/docker-compose.yml
Normal file
@@ -0,0 +1,32 @@
|
||||
---
|
||||
version: "2"
|
||||
services:
|
||||
nextcloud:
|
||||
image: linuxserver/nextcloud
|
||||
container_name: nextcloud
|
||||
environment:
|
||||
- PUID=${PUID}
|
||||
- PGID=${PGID}
|
||||
- TZ=${TZ}
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- ./data:/data
|
||||
ports:
|
||||
- ${PORT}:443
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
- nextcloud_db
|
||||
nextcloud_db:
|
||||
image: linuxserver/mariadb
|
||||
container_name: nextcloud_db
|
||||
environment:
|
||||
- PUID=${PUID}
|
||||
- PGID=${PGID}
|
||||
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
|
||||
- TZ=${TZ}
|
||||
- MYSQL_DATABASE=nextcloud_db
|
||||
- MYSQL_USER=nextcloud
|
||||
- MYSQL_PASSWORD=${DATABASE_PASSWORD}
|
||||
volumes:
|
||||
- ./db:/config
|
||||
restart: unless-stopped
|
||||
Reference in New Issue
Block a user