mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-21 02:40:09 +00:00
Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/3bd90eb7-e6f2-4647-9e78-4f9349300a29 fix: use gethostbyname for lldap IP and fix community-container depends_on skip logic Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/67d6ed5f-8bdc-4b9b-a33c-9ff73305c799 fix: ensure lldap starts before jellyfin via depends_on Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/448ec7d3-f71e-4499-a4a4-67314434a77c Update ContainerDefinitionFetcher.php Signed-off-by: Simon L. <szaimen@e.mail.de> fix: protect standard container dependencies from being skipped for community containers Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/cdd6a51b-75a3-4f43-9d00-85b1df2f880f Co-Authored-By: szaimen <42591237+szaimen@users.noreply.github.com>
44 lines
1.3 KiB
JSON
44 lines
1.3 KiB
JSON
{
|
|
"aio_services_v1": [
|
|
{
|
|
"container_name": "nextcloud-aio-jellyfin",
|
|
"display_name": "Jellyfin",
|
|
"documentation": "https://github.com/nextcloud/all-in-one/tree/main/community-containers/jellyfin",
|
|
"image": "jellyfin/jellyfin",
|
|
"image_tag": "latest",
|
|
"internal_port": "host",
|
|
"restart": "unless-stopped",
|
|
"environment": [
|
|
"TZ=%TIMEZONE%"
|
|
],
|
|
"volumes": [
|
|
{
|
|
"source": "nextcloud_aio_jellyfin",
|
|
"destination": "/config",
|
|
"writeable": true
|
|
},
|
|
{
|
|
"source": "%NEXTCLOUD_DATADIR%",
|
|
"destination": "/media",
|
|
"writeable": false
|
|
},
|
|
{
|
|
"source": "%NEXTCLOUD_MOUNT%",
|
|
"destination": "%NEXTCLOUD_MOUNT%",
|
|
"writeable": true
|
|
}
|
|
],
|
|
"devices": [
|
|
"/dev/dri"
|
|
],
|
|
"enable_nvidia_gpu": true,
|
|
"backup_volumes": [
|
|
"nextcloud_aio_jellyfin"
|
|
],
|
|
"depends_on": [
|
|
"nextcloud-aio-lldap"
|
|
]
|
|
}
|
|
]
|
|
}
|