Skip to content

Commit

Permalink
Ab ohiccups/master (#4824)
Browse files Browse the repository at this point in the history
* 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
steveiliop56 and ABOhiccups authored Sep 13, 2024
1 parent f960d73 commit 9357c6d
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 0 deletions.
20 changes: 20 additions & 0 deletions apps/emby/config.json
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
}
44 changes: 44 additions & 0 deletions apps/emby/docker-compose.yml
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
12 changes: 12 additions & 0 deletions apps/emby/metadata/description.md
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 |
Binary file added apps/emby/metadata/logo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 9357c6d

Please sign in to comment.