{"id":141,"date":"2025-11-05T19:41:04","date_gmt":"2025-11-05T19:41:04","guid":{"rendered":"https:\/\/aboutblank.fr\/?p=141"},"modified":"2025-11-05T19:41:04","modified_gmt":"2025-11-05T19:41:04","slug":"installer-tdarr-sur-wsl-ubuntu","status":"publish","type":"post","link":"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/","title":{"rendered":"Installer Tdarr sur WSL\/Ubuntu"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">SI ce n&#8217;est pas d\u00e9j\u00e0 fait, il faut installer docker.io et docker-compose avant d&#8217;installer Tdarr :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo apt install docker.io docker-compose -y<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"># Issue : <a href=\"https:\/\/unix.stackexchange.com\/questions\/724518\/the-following-packages-have-unmet-dependencies-containerd-io\">https:\/\/unix.stackexchange.com\/questions\/724518\/the-following-packages-have-unmet-dependencies-containerd-io<\/a><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Si vous rencontrez l&#8217;erreur :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Reading package lists... Done\nBuilding dependency tree... Done\nReading state information... Done\nSome packages could not be installed. This may mean that you have\nrequested an impossible situation or if you are using the unstable\ndistribution that some required packages have not yet been created\nor been moved out of Incoming.\nThe following information may help to resolve the situation:\n\nThe following packages have unmet dependencies:\n containerd.io : Conflicts: containerd\n                 Conflicts: runc\nE: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Il faut supprimer containerd avant d&#8217;installer docker.io :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo apt-get remove containerd.io\n$ sudo apt install docker.io docker-compose -y\n$ sudo systemctl start docker\n$ sudo gpasswd -a $USER docker<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Puis composer le fichier <strong>docker-compose.yml<\/strong> :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>version: \"3.4\"\nservices:\n  tdarr:\n    container_name: tdarr\n    image: ghcr.io\/haveagitgat\/tdarr:latest\n    restart: unless-stopped\n    network_mode: bridge\n    ports:\n      - 8265:8265 # webUI port\n      - 8266:8266 # server port\n    environment:\n      - TZ=Europe\/Paris\n      - PUID=$PUID\n      - PGID=$PGID\n      - UMASK_SET=002\n      - serverIP=0.0.0.0\n      - serverPort=8266\n      - webUIPort=8265\n      - internalNode=true\n      - inContainer=true\n      - ffmpegVersion=7\n      - nodeName=MyInternalNode\n      - auth=false\n      - openBrowser=true\n      - maxLogSizeMB=10\n      - cronPluginUpdate=\n      - NVIDIA_DRIVER_CAPABILITIES=all\n      - NVIDIA_VISIBLE_DEVICES=all\n    volumes:\n      - \/docker\/tdarr\/server:\/app\/server\n      - \/docker\/tdarr\/configs:\/app\/configs\n      - \/docker\/tdarr\/logs:\/app\/logs\n      - \/media:\/media\n      - \/mnt:\/mnt\n      - \/transcode_cache:\/temp\n\n    devices:\n      - \/dev\/dri:\/dev\/dri\n    deploy:\n      resources:\n        reservations:\n          devices:\n          - driver: nvidia\n            count: all\n            capabilities: &#91;gpu]\n\n# node example\n  tdarr-node:\n    container_name: tdarr-node\n    image: ghcr.io\/haveagitgat\/tdarr_node:latest\n    restart: unless-stopped\n    network_mode: service:tdarr\n    environment:\n      - TZ=Europe\/Paris\n      - PUID=$PUID\n      - PGID=$PGID\n      - UMASK_SET=002\n      - nodeName=MyExternalNode\n      - serverIP=0.0.0.0\n      - serverPort=8266\n      - inContainer=true\n      - ffmpegVersion=7\n      - nodeType=mapped\n      - priority=-1\n      - cronPluginUpdate=\n      - apiKey=\n      - maxLogSizeMB=10\n      - pollInterval=2000\n      - startPaused=false\n      - transcodegpuWorkers=1\n      - transcodecpuWorkers=2\n      - healthcheckgpuWorkers=1\n      - healthcheckcpuWorkers=1\n      - NVIDIA_DRIVER_CAPABILITIES=all\n      - NVIDIA_VISIBLE_DEVICES=all\n\n    volumes:\n      - \/docker\/tdarr\/configs:\/app\/configs\n      - \/docker\/tdarr\/logs:\/app\/logs\n      - \/media:\/media\n      - \/mnt:\/mnt\n      - \/transcode_cache:\/temp\n\n    devices:\n      - \/dev\/dri:\/dev\/dri\n    deploy:\n      resources:\n        reservations:\n          devices:\n          - driver: nvidia\n            count: all\n            capabilities: &#91;gpu]<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"># Issue : <a href=\"https:\/\/github.com\/HaveAGitGat\/Tdarr\/issues\/610\">https:\/\/github.com\/HaveAGitGat\/Tdarr\/issues\/610<\/a><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Si vous rencontrez l&#8217;erreur suivante lors de la composition :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ERROR: for tdarr  Cannot start service tdarr: error gathering device information while adding custom device \"\/dev\/dri\": no such file or directory<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Il faut installer les pilotes NVIDIA :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ curl -fsSL https:\/\/nvidia.github.io\/libnvidia-container\/gpgkey | sudo gpg --dearmor -o \/usr\/share\/keyrings\/nvidia-container-toolkit-keyring.gpg \\\n  &amp;&amp; curl -s -L https:\/\/nvidia.github.io\/libnvidia-container\/stable\/deb\/nvidia-container-toolkit.list | \\\n    sed 's#deb https:\/\/#deb &#91;signed-by=\/usr\/share\/keyrings\/nvidia-container-toolkit-keyring.gpg] https:\/\/#g' | \\\n    sudo tee \/etc\/apt\/sources.list.d\/nvidia-container-toolkit.list\n$ sudo apt update\n$ export NVIDIA_CONTAINER_TOOLKIT_VERSION=1.18.0-1\n  sudo apt-get install -y \\\n      nvidia-container-toolkit=${NVIDIA_CONTAINER_TOOLKIT_VERSION} \\\n      nvidia-container-toolkit-base=${NVIDIA_CONTAINER_TOOLKIT_VERSION} \\\n      libnvidia-container-tools=${NVIDIA_CONTAINER_TOOLKIT_VERSION} \\\n      libnvidia-container1=${NVIDIA_CONTAINER_TOOLKIT_VERSION}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Puis configurer docker pour l&#8217;utiliser le pilote NVIDIA avec <strong>nvidia-ctk<\/strong> :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo nvidia-ctk runtime configure --runtime=docker\n$ sudo systemctl restart docker<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>SI ce n&#8217;est pas d\u00e9j\u00e0 fait, il faut installer docker.io et docker-compose avant d&#8217;installer Tdarr : # Issue : https:\/\/unix.stackexchange.com\/questions\/724518\/the-following-packages-have-unmet-dependencies-containerd-io Si vous rencontrez l&#8217;erreur : Il faut supprimer containerd avant d&#8217;installer docker.io : Puis composer le fichier docker-compose.yml : # Issue : https:\/\/github.com\/HaveAGitGat\/Tdarr\/issues\/610 Si vous rencontrez l&#8217;erreur suivante lors de la composition : Il faut [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":142,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[],"class_list":["post-141","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutos"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Installer Tdarr sur WSL\/Ubuntu - about:blank<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Installer Tdarr sur WSL\/Ubuntu - about:blank\" \/>\n<meta property=\"og:description\" content=\"SI ce n&#8217;est pas d\u00e9j\u00e0 fait, il faut installer docker.io et docker-compose avant d&#8217;installer Tdarr : # Issue : https:\/\/unix.stackexchange.com\/questions\/724518\/the-following-packages-have-unmet-dependencies-containerd-io Si vous rencontrez l&#8217;erreur : Il faut supprimer containerd avant d&#8217;installer docker.io : Puis composer le fichier docker-compose.yml : # Issue : https:\/\/github.com\/HaveAGitGat\/Tdarr\/issues\/610 Si vous rencontrez l&#8217;erreur suivante lors de la composition : Il faut [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/\" \/>\n<meta property=\"og:site_name\" content=\"about:blank\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/ramyr7z\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/ramyr7z\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-05T19:41:04+00:00\" \/>\n<meta name=\"author\" content=\"ramy\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"ramy\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/\"},\"author\":{\"name\":\"ramy\",\"@id\":\"https:\/\/aboutblank.fr\/#\/schema\/person\/e443d4b5268a6c0a283cc35b34107a96\"},\"headline\":\"Installer Tdarr sur WSL\/Ubuntu\",\"datePublished\":\"2025-11-05T19:41:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/\"},\"wordCount\":85,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/aboutblank.fr\/#\/schema\/person\/e443d4b5268a6c0a283cc35b34107a96\"},\"image\":{\"@id\":\"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/#primaryimage\"},\"thumbnailUrl\":\"\",\"articleSection\":[\"Tutos\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/\",\"url\":\"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/\",\"name\":\"Installer Tdarr sur WSL\/Ubuntu - about:blank\",\"isPartOf\":{\"@id\":\"https:\/\/aboutblank.fr\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/#primaryimage\"},\"thumbnailUrl\":\"\",\"datePublished\":\"2025-11-05T19:41:04+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/#primaryimage\",\"url\":\"\",\"contentUrl\":\"\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/aboutblank.fr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Installer Tdarr sur WSL\/Ubuntu\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/aboutblank.fr\/#website\",\"url\":\"https:\/\/aboutblank.fr\/\",\"name\":\"about:blank\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/aboutblank.fr\/#\/schema\/person\/e443d4b5268a6c0a283cc35b34107a96\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/aboutblank.fr\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/aboutblank.fr\/#\/schema\/person\/e443d4b5268a6c0a283cc35b34107a96\",\"name\":\"ramy\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/aboutblank.fr\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/aboutblank.fr\/wp-content\/uploads\/2025\/12\/camel.png\",\"contentUrl\":\"https:\/\/aboutblank.fr\/wp-content\/uploads\/2025\/12\/camel.png\",\"width\":1000,\"height\":821,\"caption\":\"ramy\"},\"logo\":{\"@id\":\"https:\/\/aboutblank.fr\/#\/schema\/person\/image\/\"},\"sameAs\":[\"https:\/\/aboutblank.fr\/\",\"https:\/\/www.facebook.com\/ramyr7z\"],\"url\":\"https:\/\/aboutblank.fr\/index.php\/author\/ramy\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Installer Tdarr sur WSL\/Ubuntu - about:blank","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/","og_locale":"en_US","og_type":"article","og_title":"Installer Tdarr sur WSL\/Ubuntu - about:blank","og_description":"SI ce n&#8217;est pas d\u00e9j\u00e0 fait, il faut installer docker.io et docker-compose avant d&#8217;installer Tdarr : # Issue : https:\/\/unix.stackexchange.com\/questions\/724518\/the-following-packages-have-unmet-dependencies-containerd-io Si vous rencontrez l&#8217;erreur : Il faut supprimer containerd avant d&#8217;installer docker.io : Puis composer le fichier docker-compose.yml : # Issue : https:\/\/github.com\/HaveAGitGat\/Tdarr\/issues\/610 Si vous rencontrez l&#8217;erreur suivante lors de la composition : Il faut [&hellip;]","og_url":"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/","og_site_name":"about:blank","article_publisher":"https:\/\/www.facebook.com\/ramyr7z","article_author":"https:\/\/www.facebook.com\/ramyr7z","article_published_time":"2025-11-05T19:41:04+00:00","author":"ramy","twitter_card":"summary_large_image","twitter_misc":{"Written by":"ramy","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/#article","isPartOf":{"@id":"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/"},"author":{"name":"ramy","@id":"https:\/\/aboutblank.fr\/#\/schema\/person\/e443d4b5268a6c0a283cc35b34107a96"},"headline":"Installer Tdarr sur WSL\/Ubuntu","datePublished":"2025-11-05T19:41:04+00:00","mainEntityOfPage":{"@id":"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/"},"wordCount":85,"commentCount":0,"publisher":{"@id":"https:\/\/aboutblank.fr\/#\/schema\/person\/e443d4b5268a6c0a283cc35b34107a96"},"image":{"@id":"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/#primaryimage"},"thumbnailUrl":"","articleSection":["Tutos"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/","url":"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/","name":"Installer Tdarr sur WSL\/Ubuntu - about:blank","isPartOf":{"@id":"https:\/\/aboutblank.fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/#primaryimage"},"image":{"@id":"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/#primaryimage"},"thumbnailUrl":"","datePublished":"2025-11-05T19:41:04+00:00","breadcrumb":{"@id":"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/#primaryimage","url":"","contentUrl":""},{"@type":"BreadcrumbList","@id":"https:\/\/aboutblank.fr\/index.php\/2025\/11\/05\/installer-tdarr-sur-wsl-ubuntu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/aboutblank.fr\/"},{"@type":"ListItem","position":2,"name":"Installer Tdarr sur WSL\/Ubuntu"}]},{"@type":"WebSite","@id":"https:\/\/aboutblank.fr\/#website","url":"https:\/\/aboutblank.fr\/","name":"about:blank","description":"","publisher":{"@id":"https:\/\/aboutblank.fr\/#\/schema\/person\/e443d4b5268a6c0a283cc35b34107a96"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/aboutblank.fr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/aboutblank.fr\/#\/schema\/person\/e443d4b5268a6c0a283cc35b34107a96","name":"ramy","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/aboutblank.fr\/#\/schema\/person\/image\/","url":"https:\/\/aboutblank.fr\/wp-content\/uploads\/2025\/12\/camel.png","contentUrl":"https:\/\/aboutblank.fr\/wp-content\/uploads\/2025\/12\/camel.png","width":1000,"height":821,"caption":"ramy"},"logo":{"@id":"https:\/\/aboutblank.fr\/#\/schema\/person\/image\/"},"sameAs":["https:\/\/aboutblank.fr\/","https:\/\/www.facebook.com\/ramyr7z"],"url":"https:\/\/aboutblank.fr\/index.php\/author\/ramy\/"}]}},"_links":{"self":[{"href":"https:\/\/aboutblank.fr\/index.php\/wp-json\/wp\/v2\/posts\/141","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/aboutblank.fr\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/aboutblank.fr\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/aboutblank.fr\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/aboutblank.fr\/index.php\/wp-json\/wp\/v2\/comments?post=141"}],"version-history":[{"count":0,"href":"https:\/\/aboutblank.fr\/index.php\/wp-json\/wp\/v2\/posts\/141\/revisions"}],"wp:attachment":[{"href":"https:\/\/aboutblank.fr\/index.php\/wp-json\/wp\/v2\/media?parent=141"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/aboutblank.fr\/index.php\/wp-json\/wp\/v2\/categories?post=141"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/aboutblank.fr\/index.php\/wp-json\/wp\/v2\/tags?post=141"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}