mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 02:46:23 +00:00
Minor Update
* updated readme (needs more work) * heimdall is great * added jellyfin
This commit is contained in:
@@ -23,7 +23,6 @@ Which isn't ideal, but I don't know how to do this more elegantly.
|
|||||||
|
|
||||||
# Possible additions:
|
# Possible additions:
|
||||||
|
|
||||||
* emby: [dockerhub](https://hub.docker.com/r/emby/embyserver) [official](https://emby.media/)
|
|
||||||
* mailtrain: https://hub.docker.com/r/mailtrain/mailtrain
|
* mailtrain: https://hub.docker.com/r/mailtrain/mailtrain
|
||||||
* portus: https://hub.docker.com/r/opensuse/portus/
|
* portus: https://hub.docker.com/r/opensuse/portus/
|
||||||
* silverpeas: https://hub.docker.com/_/silverpeas
|
* silverpeas: https://hub.docker.com/_/silverpeas
|
||||||
|
|||||||
@@ -5,9 +5,12 @@ version: "3"
|
|||||||
# Heimdall (Homepage)
|
# Heimdall (Homepage)
|
||||||
#
|
#
|
||||||
# DockerHub: https://hub.docker.com/r/linuxserver/heimdall
|
# DockerHub: https://hub.docker.com/r/linuxserver/heimdall
|
||||||
|
# Offical Website: https://heimdall.site/
|
||||||
#
|
#
|
||||||
# SAMPLE ENV
|
# SAMPLE .env
|
||||||
# <intentionally blank>
|
# VERSION=latest
|
||||||
|
# TZ=America/Vancouver
|
||||||
|
# PORT=8000
|
||||||
#
|
#
|
||||||
# NOTES
|
# NOTES
|
||||||
#
|
#
|
||||||
@@ -21,15 +24,15 @@ version: "3"
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
heimdall:
|
heimdall:
|
||||||
image: linuxserver/heimdall:2.5.6
|
image: linuxserver/heimdall:${VERSION:-latest}
|
||||||
environment:
|
environment:
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
- TZ=America/Vancouver
|
- TZ=${TZ:-America/Vancouver}
|
||||||
volumes:
|
volumes:
|
||||||
- ./data:/config
|
- ./data:/config
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
#ports:
|
#ports:
|
||||||
# - "8000:80"
|
# - "${PORT:-80}:80"
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,41 @@
|
|||||||
|
---
|
||||||
|
version: "3"
|
||||||
|
|
||||||
|
###########################################################################################################################
|
||||||
|
# Jellyfin
|
||||||
|
#
|
||||||
|
# LINKS
|
||||||
|
# * [DockerHub](https://hub.docker.com/_/mariadb/)
|
||||||
|
# * [Docs](https://jellyfin.org/docs/)
|
||||||
|
#
|
||||||
|
# Notes:
|
||||||
|
# Static Ports
|
||||||
|
# * 8096/tcp is used by default for HTTP traffic. You can change this in the dashboard.
|
||||||
|
# * 8920/tcp is used by default for HTTPS traffic. You can change this in the dashboard.
|
||||||
|
# * 1900/udp is used for service auto-discovery. This is not configurable.
|
||||||
|
# * 7359/udp is also used for auto-discovery. This is not configurable.
|
||||||
|
#
|
||||||
|
# SAMPLE ENV
|
||||||
|
# <blank>
|
||||||
|
###########################################################################################################################
|
||||||
|
|
||||||
|
services:
|
||||||
|
|
||||||
|
jellyfin:
|
||||||
|
image: jellyfin/jellyfin:latest
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ./data/config:/config
|
||||||
|
- ./data/cache:/cache
|
||||||
|
- ./data/content/media:/media
|
||||||
|
- ./data/content/books:/books
|
||||||
|
- ./data/content/movies:/movies
|
||||||
|
- ./data/content/music:/music
|
||||||
|
- ./data/content/musicvideos:/musicvideos
|
||||||
|
- ./data/content/photos:/photos
|
||||||
|
- ./data/content/shows:/shows
|
||||||
|
ports:
|
||||||
|
- "8096:8096"
|
||||||
|
restart: unless-stopped
|
||||||
|
environment:
|
||||||
|
- JELLYFIN_PublishedServerUrl=http://localhost:8000
|
||||||
Reference in New Issue
Block a user