-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add files via upload * Delete apps/emby/metadata/logo.jpg * Add files via upload * Update docker-compose.yml * Update config.json * Update docker-compose.yml * Update config.json * Delete apps/emby directory * Add files via upload * Update docker-compose.yml * Delete apps/embyserver directory * Add files via upload * Update docker-compose.yml * Update config.json * Update config.json * Update config.json * Update docker-compose.yml * Update docker-compose.yml * Update config.json * Update docker-compose.yml * Update docker-compose.yml * Update docker-compose.yml * Update docker-compose.yml * Update docker-compose.yml * Update docker-compose.yml * Update docker-compose.yml * Update docker-compose.yml * Update docker-compose.yml * Update docker-compose.yml * Update docker-compose.yml * Update docker-compose.yml * Update docker-compose.yml * refactor: small qol improvements --------- Co-authored-by: ABOhiccups <[email protected]>
- Loading branch information
1 parent
f960d73
commit 9357c6d
Showing
4 changed files
with
76 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"$schema": "../schema.json", | ||
"name": "Emby", | ||
"available": true, | ||
"exposable": true, | ||
"port": 8325, | ||
"id": "emby", | ||
"tipi_version": 1, | ||
"version": "4.8.8", | ||
"categories": ["media"], | ||
"description": "Emby is a media server designed to organize, play, and stream audio and video to a variety of devices", | ||
"short_desc": "A media server for your home collection", | ||
"author": "emby.media", | ||
"source": "https://emby.media", | ||
"website": "https://emby.media", | ||
"form_fields": [], | ||
"supported_architectures": ["arm64", "amd64"], | ||
"created_at": 1691943801422, | ||
"updated_at": 1691943801422 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
version: "3.7" | ||
services: | ||
emby: | ||
image: lscr.io/linuxserver/emby:4.8.8 | ||
container_name: emby | ||
volumes: | ||
- ${APP_DATA_DIR}/data/config:/config | ||
- ${ROOT_FOLDER_HOST}/media/data:/media/data | ||
environment: | ||
- PUID=1000 | ||
- PGID=1000 | ||
- TZ=${TZ} | ||
restart: unless-stopped | ||
ports: | ||
- ${APP_PORT}:8096 | ||
networks: | ||
- tipi_main_network | ||
labels: | ||
# Main | ||
traefik.enable: true | ||
traefik.http.middlewares.emby-web-redirect.redirectscheme.scheme: https | ||
traefik.http.services.emby.loadbalancer.server.port: 8096 | ||
# Web | ||
traefik.http.routers.emby-insecure.rule: Host(`${APP_DOMAIN}`) | ||
traefik.http.routers.emby-insecure.entrypoints: web | ||
traefik.http.routers.emby-insecure.service: emby | ||
traefik.http.routers.emby-insecure.middlewares: emby-web-redirect | ||
# Websecure | ||
traefik.http.routers.emby.rule: Host(`${APP_DOMAIN}`) | ||
traefik.http.routers.emby.entrypoints: websecure | ||
traefik.http.routers.emby.service: emby | ||
traefik.http.routers.emby.tls.certresolver: myresolver | ||
# Local domain | ||
traefik.http.routers.emby-local-insecure.rule: Host(`emby.${LOCAL_DOMAIN}`) | ||
traefik.http.routers.emby-local-insecure.entrypoints: web | ||
traefik.http.routers.emby-local-insecure.service: emby | ||
traefik.http.routers.emby-local-insecure.middlewares: emby-web-redirect | ||
# Local domain secure | ||
traefik.http.routers.emby-local.rule: Host(`emby.${LOCAL_DOMAIN}`) | ||
traefik.http.routers.emby-local.entrypoints: websecure | ||
traefik.http.routers.emby-local.service: emby | ||
traefik.http.routers.emby-local.tls: true | ||
# Runtipi managed | ||
runtipi.managed: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
## Emby | ||
|
||
Bringing all of your home videos, music, and photos together into one place has never been easier. Your personal Emby Server automatically converts and streams your media on-the-fly to play on any device. | ||
|
||
![Emby](https://emby.media/resources/Screenshot_2015-09-28-22-42-491.png) | ||
|
||
### Folder Info | ||
|
||
| Root Folder | Container Folder | | ||
|----------------------------------------|------------------| | ||
| /runtipi/app-data/emby/data/config | /config | | ||
| /runtipi/media/data | /media/data | |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.