{"id":2151,"date":"2020-11-16T11:14:52","date_gmt":"2020-11-16T10:14:52","guid":{"rendered":"https:\/\/geko2.factoryfy.com\/es\/?p=3057"},"modified":"2021-11-03T18:49:56","modified_gmt":"2021-11-03T17:49:56","slug":"volumenes-nfs-contenedores-docker","status":"publish","type":"post","link":"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/","title":{"rendered":"Vol\u00famenes NFS en contenedores Docker"},"content":{"rendered":"<p><span style=\"font-weight: 400;\">En muchas ocasiones nos encontramos con la necesidad de tener que <strong>usar en docker un volumen que est\u00e9 compartido desde otro servidor mediante NFS<\/strong>. Para esto docker incluye su propio driver de NFS que nos permitir\u00e1 directamente usar ese volumen sin tener que montarlo dentro de la m\u00e1quina host.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Tenemos diferentes formas de usar estos vol\u00famenes NFS en nuestros contenedores:<\/span><\/p>\n<ul>\n<li><span style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"> En primer lugar, podemos crear un volumen que podremos usar tanto en <strong>docker compose<\/strong> como usando un <strong>docker run<\/strong>. Para esto usaremos el siguiente comando:\u00a0<\/span><\/span>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">  $ docker volume create --driver local \r\n      --opt type=nfs \r\n      --opt o=nfsvers=4,addr=nfs.example-domain.com,rw \r\n      --opt device=:\/path\/to\/dir \r\n      volume-name<\/pre>\n<\/div>\n<p><span style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">\u00a0Una vez que tenemos creado el volumen, podremos montarlo dentro de nuestro contenedor\u00a0<\/span><\/span><\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\">  $ docker run -it --rm \r\n    --mount type=volume,dst=\/container\/path,volume-driver=local,volume-opt=type=nfs,\"volume-opt=o=nfsvers=4,addr=nfs.example-domain.com\",volume-opt=device=:\/host\/path \r\n    volume-name<\/pre>\n<\/div>\n<\/li>\n<li>Esta misma configuraci\u00f3n <strong><strong>podemos aplicarlas dentro de nuestro docker-comper<\/strong><\/strong>. Dentro de nuestro <strong>docker-compose.yaml\u00a0<\/strong>tendremos que crear el volumen y montarlo dentro de nuestro contenedor.\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\"># Container conf\r\n  ...\r\n  container-conf:\r\n    container_name: foo\/bar\r\n    image: imagename:tag\r\n    ports:\r\n      - 80:80\r\n    volumes:\r\n      - new_volume:\/path\/inside\/container\r\n  ...\r\n# Create volume\r\n  ...\r\n  volumes:\r\n    new_volume:\r\n      driver: local\r\n      driver_opts:\r\n        type: nfs\r\n        o: nfsvers=4,addr=nfs.example-domain.com,rw\r\n        device: \":\/host\/path\/to\/dir\"\r\n  ...<\/pre>\n<\/div>\n<p>Esta misma situaci\u00f3n nos la hemos encontrado teniendo la necesidad de montar al contenedor un <strong>EFS\u00a0<\/strong>(Elastic File System) de Amazon Web Services. Este servicio de AWS proporciona almacenamiento escalable, el\u00e1stico y concurrente y podremos a\u00f1adirlo usando el mismo driver de NFS en docker.<\/p>\n<div class=\"wp-block-codemirror-blocks code-block \">\n<pre class=\"CodeMirror\" data-setting=\"{\"># Container conf\r\n ...\r\n  container-conf:\r\n    container_name: foo\/bar\r\n    image: imagename:tag\r\n    ports:\r\n      - 80:80\r\n    volumes:\r\n      - new_volume:\/path\/inside\/container\r\n ... \r\n# Create volume\r\n ...\r\n  volumes:\r\n    efs_volume:\r\n      driver: local\r\n      driver_opts:\r\n        type: nfs\r\n        o: addr=[EFS_DNS],nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2\r\n        device: [EFS_DNS]:\/\r\n ...<\/pre>\n<\/div>\n<p>Hay que tener en cuenta que si acabamos de crear este <strong>EFS<\/strong>, puede ser que cuando intentemos crear este volumen <strong>nos d\u00e9 un error avisando de que no encuentra el <em>endpoint<\/em> de EFS<\/strong>. Esto se debe a que esas <strong>DNS<\/strong> tardaran unos minutos en propagarse. En el caso de que no pod\u00e1is a\u00f1adirlo mediante el <em>endpoint<\/em>, podremos hacerlo directamente desde la IP del <strong>EFS<\/strong>.<\/li>\n<\/ul>\n<p>Esperamos que esta explicaci\u00f3n te haya sido de utilidad y no olvides que en <a href=\"https:\/\/geko.cloud\/es\/\">Geko cloud<\/a> estamos a tu disposici\u00f3n para la gesti\u00f3n de <a href=\"https:\/\/geko.cloud\/es\/servicios-cloud\/gestion-cloud\/\">infraestructuras cloud<\/a> y microservicios.<\/p>\n<p>Si tienes otras dudas relacionadas con <a href=\"https:\/\/geko.cloud\/es\/servicios-cloud\/arquitectura-de-microservicios-y-docker\/\">docker<\/a> o <a href=\"https:\/\/geko.cloud\/es\/que-es-kubernetes\/\">Kubernetes<\/a>, quiz\u00e1 puedas encontrar respuestas en otras de las entradas de nuestro <a href=\"https:\/\/geko.cloud\/es\/blog\/\">blog<\/a>.<\/p>\n<p>\u00a1Hasta la pr\u00f3xima!<\/p>\n<h4 style=\"text-align: center;\"><a href=\"https:\/\/geko.cloud\/es\/contacto\/\">\u00a1Contacta con nosotros y charlemos sobre c\u00f3mo podemos ayudarte a hacer tu plataforma m\u00e1s \u00e1gil y segura!<\/a><\/h4>\n<p><a href=\"https:\/\/geko.cloud\/es\/contacto\/\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-3265\" src=\"https:\/\/geko2.factoryfy.com\/wp-content\/uploads\/geko-1-300x297.png\" alt=\"\" width=\"65\" height=\"64\" \/><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>En muchas ocasiones nos encontramos con la necesidad de tener que usar en docker un volumen que est\u00e9 compartido desde otro servidor mediante NFS. Para esto docker incluye su propio driver de NFS que nos permitir\u00e1 directamente usar ese volumen sin tener que montarlo dentro de la m\u00e1quina host. Tenemos diferentes formas de usar estos [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":2152,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[18],"tags":[34,50],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Vol\u00famenes NFS en contenedores Docker - Geko Cloud<\/title>\n<meta name=\"description\" content=\"Conoce como crear vol\u00famenes NFS en contenedores Docker paso a paso en nuestro post escrito por expertos en Kubernetes y Docker.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Vol\u00famenes NFS en contenedores Docker - Geko Cloud\" \/>\n<meta property=\"og:description\" content=\"Conoce como crear vol\u00famenes NFS en contenedores Docker paso a paso en nuestro post escrito por expertos en Kubernetes y Docker.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/\" \/>\n<meta property=\"og:site_name\" content=\"Geko Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2020-11-16T10:14:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-03T17:49:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/geko.cloud\/wp-content\/uploads\/portada.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1100\" \/>\n\t<meta property=\"og:image:height\" content=\"400\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Jose Luis S\u00e1nchez\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@geko_cloud\" \/>\n<meta name=\"twitter:site\" content=\"@geko_cloud\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/\"},\"author\":{\"name\":\"Jose Luis S\u00e1nchez\",\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/person\/d06aff498ebfbc75b5010ebe92af41ed\"},\"headline\":\"Vol\u00famenes NFS en contenedores Docker\",\"datePublished\":\"2020-11-16T10:14:52+00:00\",\"dateModified\":\"2021-11-03T17:49:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/\"},\"wordCount\":320,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/geko.cloud\/es\/#organization\"},\"image\":{\"@id\":\"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/portada.png\",\"keywords\":[\"AWS\",\"Docker\"],\"articleSection\":[\"Labs\"],\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/\",\"url\":\"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/\",\"name\":\"Vol\u00famenes NFS en contenedores Docker - Geko Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/geko.cloud\/es\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/portada.png\",\"datePublished\":\"2020-11-16T10:14:52+00:00\",\"dateModified\":\"2021-11-03T17:49:56+00:00\",\"description\":\"Conoce como crear vol\u00famenes NFS en contenedores Docker paso a paso en nuestro post escrito por expertos en Kubernetes y Docker.\",\"breadcrumb\":{\"@id\":\"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/#primaryimage\",\"url\":\"https:\/\/geko.cloud\/wp-content\/uploads\/portada.png\",\"contentUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/portada.png\",\"width\":1100,\"height\":400,\"caption\":\"docker nfs logo\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\/\/geko.cloud\/es\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Vol\u00famenes NFS en contenedores Docker\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/geko.cloud\/es\/#website\",\"url\":\"https:\/\/geko.cloud\/es\/\",\"name\":\"Geko Cloud\",\"description\":\"Servicios de consultor\u00eda cloud y devops\",\"publisher\":{\"@id\":\"https:\/\/geko.cloud\/es\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/geko.cloud\/es\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/geko.cloud\/es\/#organization\",\"name\":\"Geko Cloud\",\"url\":\"https:\/\/geko.cloud\/es\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/geko_logo-positivo.png\",\"contentUrl\":\"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/geko_logo-positivo.png\",\"width\":1650,\"height\":809,\"caption\":\"Geko Cloud\"},\"image\":{\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/geko_cloud\",\"https:\/\/www.instagram.com\/gekocloud\/\",\"https:\/\/www.linkedin.com\/company\/gekocloud\",\"https:\/\/www.youtube.com\/channel\/UC5EFLCqUM7fEaXSa_0nWowQ\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/person\/d06aff498ebfbc75b5010ebe92af41ed\",\"name\":\"Jose Luis S\u00e1nchez\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/geko.cloud\/es\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ebfd055d4dba456220c682523fcc237c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ebfd055d4dba456220c682523fcc237c?s=96&d=mm&r=g\",\"caption\":\"Jose Luis S\u00e1nchez\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Vol\u00famenes NFS en contenedores Docker - Geko Cloud","description":"Conoce como crear vol\u00famenes NFS en contenedores Docker paso a paso en nuestro post escrito por expertos en Kubernetes y Docker.","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:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/","og_locale":"es_ES","og_type":"article","og_title":"Vol\u00famenes NFS en contenedores Docker - Geko Cloud","og_description":"Conoce como crear vol\u00famenes NFS en contenedores Docker paso a paso en nuestro post escrito por expertos en Kubernetes y Docker.","og_url":"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/","og_site_name":"Geko Cloud","article_published_time":"2020-11-16T10:14:52+00:00","article_modified_time":"2021-11-03T17:49:56+00:00","og_image":[{"width":1100,"height":400,"url":"https:\/\/geko.cloud\/wp-content\/uploads\/portada.png","type":"image\/png"}],"author":"Jose Luis S\u00e1nchez","twitter_card":"summary_large_image","twitter_creator":"@geko_cloud","twitter_site":"@geko_cloud","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/#article","isPartOf":{"@id":"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/"},"author":{"name":"Jose Luis S\u00e1nchez","@id":"https:\/\/geko.cloud\/es\/#\/schema\/person\/d06aff498ebfbc75b5010ebe92af41ed"},"headline":"Vol\u00famenes NFS en contenedores Docker","datePublished":"2020-11-16T10:14:52+00:00","dateModified":"2021-11-03T17:49:56+00:00","mainEntityOfPage":{"@id":"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/"},"wordCount":320,"commentCount":0,"publisher":{"@id":"https:\/\/geko.cloud\/es\/#organization"},"image":{"@id":"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/#primaryimage"},"thumbnailUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/portada.png","keywords":["AWS","Docker"],"articleSection":["Labs"],"inLanguage":"es","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/","url":"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/","name":"Vol\u00famenes NFS en contenedores Docker - Geko Cloud","isPartOf":{"@id":"https:\/\/geko.cloud\/es\/#website"},"primaryImageOfPage":{"@id":"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/#primaryimage"},"image":{"@id":"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/#primaryimage"},"thumbnailUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/portada.png","datePublished":"2020-11-16T10:14:52+00:00","dateModified":"2021-11-03T17:49:56+00:00","description":"Conoce como crear vol\u00famenes NFS en contenedores Docker paso a paso en nuestro post escrito por expertos en Kubernetes y Docker.","breadcrumb":{"@id":"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/#primaryimage","url":"https:\/\/geko.cloud\/wp-content\/uploads\/portada.png","contentUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/portada.png","width":1100,"height":400,"caption":"docker nfs logo"},{"@type":"BreadcrumbList","@id":"https:\/\/geko.cloud\/es\/volumenes-nfs-contenedores-docker\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/geko.cloud\/es\/"},{"@type":"ListItem","position":2,"name":"Vol\u00famenes NFS en contenedores Docker"}]},{"@type":"WebSite","@id":"https:\/\/geko.cloud\/es\/#website","url":"https:\/\/geko.cloud\/es\/","name":"Geko Cloud","description":"Servicios de consultor\u00eda cloud y devops","publisher":{"@id":"https:\/\/geko.cloud\/es\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/geko.cloud\/es\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/geko.cloud\/es\/#organization","name":"Geko Cloud","url":"https:\/\/geko.cloud\/es\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/geko.cloud\/es\/#\/schema\/logo\/image\/","url":"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/geko_logo-positivo.png","contentUrl":"https:\/\/geko.cloud\/wp-content\/uploads\/2021\/10\/geko_logo-positivo.png","width":1650,"height":809,"caption":"Geko Cloud"},"image":{"@id":"https:\/\/geko.cloud\/es\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/geko_cloud","https:\/\/www.instagram.com\/gekocloud\/","https:\/\/www.linkedin.com\/company\/gekocloud","https:\/\/www.youtube.com\/channel\/UC5EFLCqUM7fEaXSa_0nWowQ"]},{"@type":"Person","@id":"https:\/\/geko.cloud\/es\/#\/schema\/person\/d06aff498ebfbc75b5010ebe92af41ed","name":"Jose Luis S\u00e1nchez","image":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/geko.cloud\/es\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ebfd055d4dba456220c682523fcc237c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ebfd055d4dba456220c682523fcc237c?s=96&d=mm&r=g","caption":"Jose Luis S\u00e1nchez"}}]}},"_links":{"self":[{"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/posts\/2151"}],"collection":[{"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/comments?post=2151"}],"version-history":[{"count":3,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/posts\/2151\/revisions"}],"predecessor-version":[{"id":5255,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/posts\/2151\/revisions\/5255"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/media\/2152"}],"wp:attachment":[{"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/media?parent=2151"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/categories?post=2151"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/geko.cloud\/es\/wp-json\/wp\/v2\/tags?post=2151"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}