Skip to content

Commit

Permalink
Add dynamic compose for emby (#6047)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lancelot-Enguerrand authored Dec 21, 2024
1 parent a8b1a32 commit 5ca4165
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
5 changes: 3 additions & 2 deletions apps/emby/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
"name": "Emby",
"available": true,
"exposable": true,
"dynamic_config": true,
"port": 8325,
"id": "emby",
"tipi_version": 3,
"tipi_version": 4,
"version": "4.8.10",
"categories": ["media"],
"description": "Emby is a media server designed to organize, play, and stream audio and video to a variety of devices",
Expand All @@ -16,5 +17,5 @@
"form_fields": [],
"supported_architectures": ["arm64", "amd64"],
"created_at": 1691943801422,
"updated_at": 1727806832000
"updated_at": 1734113784756
}
25 changes: 25 additions & 0 deletions apps/emby/docker-compose.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"services": [
{
"name": "emby",
"image": "lscr.io/linuxserver/emby:4.8.10",
"isMain": true,
"internalPort": 8096,
"environment": {
"PUID": "1000",
"PGID": "1000",
"TZ": "${TZ}"
},
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data/config",
"containerPath": "/config"
},
{
"hostPath": "${ROOT_FOLDER_HOST}/media/data",
"containerPath": "/media/data"
}
]
}
]
}

0 comments on commit 5ca4165

Please sign in to comment.