diff --git a/apps/emby/config.json b/apps/emby/config.json index 9ea2abab9c..b0ea904ca2 100644 --- a/apps/emby/config.json +++ b/apps/emby/config.json @@ -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", @@ -16,5 +17,5 @@ "form_fields": [], "supported_architectures": ["arm64", "amd64"], "created_at": 1691943801422, - "updated_at": 1727806832000 + "updated_at": 1734113784756 } diff --git a/apps/emby/docker-compose.json b/apps/emby/docker-compose.json new file mode 100644 index 0000000000..e4f3438007 --- /dev/null +++ b/apps/emby/docker-compose.json @@ -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" + } + ] + } + ] +}