new: added home assistant and jellyfin configs
This commit is contained in:
parent
a166b8203d
commit
ea7d456b5b
11
homeassistant/docker-compose.yml
Normal file
11
homeassistant/docker-compose.yml
Normal file
@ -0,0 +1,11 @@
|
||||
version: '3'
|
||||
services:
|
||||
homeassistant:
|
||||
container_name: homeassistant
|
||||
image: "ghcr.io/home-assistant/home-assistant:stable"
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
restart: on-failure:10
|
||||
privileged: true
|
||||
network_mode: host
|
40
jellyfin/config/web-config.json
Normal file
40
jellyfin/config/web-config.json
Normal file
@ -0,0 +1,40 @@
|
||||
{
|
||||
"includeCorsCredentials": false,
|
||||
"multiserver": false,
|
||||
"themes": [
|
||||
{
|
||||
"name": "Apple TV",
|
||||
"id": "appletv"
|
||||
}, {
|
||||
"name": "Blue Radiance",
|
||||
"id": "blueradiance"
|
||||
}, {
|
||||
"name": "Dark",
|
||||
"id": "dark",
|
||||
"default": true
|
||||
}, {
|
||||
"name": "Light",
|
||||
"id": "light"
|
||||
}, {
|
||||
"name": "Purple Haze",
|
||||
"id": "purplehaze"
|
||||
}, {
|
||||
"name": "WMC",
|
||||
"id": "wmc"
|
||||
}
|
||||
],
|
||||
"servers": [],
|
||||
"plugins": [
|
||||
"playAccessValidation/plugin",
|
||||
"experimentalWarnings/plugin",
|
||||
"htmlAudioPlayer/plugin",
|
||||
"htmlVideoPlayer/plugin",
|
||||
"photoPlayer/plugin",
|
||||
"comicsPlayer/plugin",
|
||||
"bookPlayer/plugin",
|
||||
"backdropScreensaver/plugin",
|
||||
"pdfPlayer/plugin",
|
||||
"logoScreensaver/plugin",
|
||||
"sessionPlayer/plugin",
|
||||
]
|
||||
}
|
18
jellyfin/docker-compose.yml
Normal file
18
jellyfin/docker-compose.yml
Normal file
@ -0,0 +1,18 @@
|
||||
version: "3.5"
|
||||
services:
|
||||
jellyfin:
|
||||
image: jellyfin/jellyfin
|
||||
container_name: jellyfin
|
||||
user: 1000:1000
|
||||
network_mode: "host"
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- ./config/web-config.json:/jellyfin/jellyfin-web/config.json
|
||||
- ./cache:/cache
|
||||
- /citadel/fabian/Medien/Audio:/media
|
||||
- /citadel/media:/movies
|
||||
# - /media/edi/Emberhawk/citadel/media:/media2
|
||||
restart: on-failure:10
|
||||
# Optional - alternative address used for autodiscovery
|
||||
# environment:
|
||||
# - JELLYFIN_PublishedServerUrl=http://example.com
|
Loading…
Reference in New Issue
Block a user