{"id":241,"date":"2017-11-10T16:17:41","date_gmt":"2017-11-10T15:17:41","guid":{"rendered":"https:\/\/www.pschatzmann.ch\/home\/?p=241"},"modified":"2020-11-21T22:22:53","modified_gmt":"2020-11-21T21:22:53","slug":"docker-wordpress-danger","status":"publish","type":"post","link":"https:\/\/www.pschatzmann.ch\/home\/2017\/11\/10\/docker-wordpress-danger\/","title":{"rendered":"Docker + WordPress = Danger"},"content":{"rendered":"<p>It is very easy with Docker to have a working WordPress up in no time with the <a href=\"https:\/\/hub.docker.com\/_\/wordpress\/\">official WordPress Image on Docker Hub.<\/a><\/p>\n<p>If you want to have an image which is backed up properly and that you can migrate w\/o any problems on a different machine, you need to take care of the proper <strong>volumes mappings<\/strong>. Unfortunately I did not find the proper documentation and I needed to find out the hard way.<\/p>\n<h3>WordPress Startup Logic<\/h3>\n<p>The WordPress solution consists of two separate pieces which are managing state and therefore will need to be coordinated together:<\/p>\n<ul>\n<li>the <strong>WordPress Application<\/strong> itself and<\/li>\n<li>the <strong>Database<\/strong> (mariadb)<\/li>\n<\/ul>\n<p>The following startup logic is used by the Official Image:<\/p>\n<ul>\n<li>When the database is started with an empty instance it automatically creates a new inital database in .<strong>\/var\/lib\/mysql<\/strong><\/li>\n<li>When WordPress is started from an empty instance it automatically copies the WordPress application from <strong>\/usr\/src\/wordpress<\/strong> to <strong>\/var\/www\/html\u00a0<\/strong>and it creates a <strong>database<\/strong> with the name <strong>wordpress.<\/strong><\/li>\n<\/ul>\n<p>In order to prevent this initial setup logic, you need to make sure that these locations are mapped properly and that the complete data is available.<\/p>\n<h3>Backup Solutions<\/h3>\n<p>We see the following solution alternatives:<\/p>\n<ul>\n<li>Do it the WordPress Way and install a Backup or Data Migration <strong>Plugin<\/strong>. In the case of data restore on a new environment you need to start from a new empty wordpress instance, install the plugin and the do the restore. From my point of view this is by for the easiest solution.<\/li>\n<\/ul>\n<p>If you want do to it the Docker way, things are getting more difficult because you need to address each component seperalty.<\/p>\n<ul>\n<li><strong>Database<\/strong>\n<ul>\n<li>Make sure that you map the database volumes so that you can restore them. Please note that if you do only a regular file backup the database might not be in a consistent state.<\/li>\n<li>Use a separate docker image which performs backups (e.g.\u00a0zeenlym\/mariadb-backup)<\/li>\n<\/ul>\n<\/li>\n<li><strong>WordPress<\/strong>\n<ul>\n<li>Avoid state in volumes. Do not make any mappings and provide your full solution <strong>as custom image<\/strong> by putting your components into\u00a0\/usr\/src\/wordpress or\u00a0\/var\/www\/html. This approach only works if your side is stable and rarely changes. <a href=\"https:\/\/www.google.ch\/search?q=statless+wordpress&amp;oq=statless+wordpress&amp;aqs=chrome..69i57j0l4.3876j0j4&amp;sourceid=chrome&amp;ie=UTF-8\">Google can help you to get quite some information on the topic of statless wordpress<\/a>.<\/li>\n<li>Or make sure that you <strong>map the proper file volume:\/var\/www\/html.\u00a0<\/strong>This is our selected solution which we have implemented below.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<h3>WordPress URL<\/h3>\n<p>The WordPress URL is stored in the database and it is not possible to address the WordPress instance with a different URL. You can find more details in the <a href=\"https:\/\/codex.wordpress.org\/Changing_The_Site_URL\">official documentation.:\u00a0<\/a>So you might need to have\u00a0<strong>phpmyadmin<\/strong> available do that you can update the address.<\/p>\n<h3><span>Docker Compose<\/span><\/h3>\n<p>Here is our docker compose file for all components which provides the proper mappings.<\/p>\n<pre>version: '3'\r\n\r\nservices:\r\n wordpress:\r\n image: wordpress:latest\r\n container_name: wordpress\r\n ports:\r\n - 8005:80\r\n environment:\r\n - WORDPRESS_DB_PASSWORD=my-password\r\n - WORDPRESS_DB_HOST=wordpress-mysql\r\n restart: always\r\n dns: 8.8.8.8\r\n volumes:\r\n - \/srv\/wordpress:<strong>\/var\/www\/html<\/strong>\r\n\r\nwordpress-mysql:\r\n image: mariadb\r\n volumes:\r\n - \/srv\/wordpress-mysql:<strong>\/var\/lib\/mysql<\/strong>\r\n - \/backup:\/backup\r\n environment:\r\n - MYSQL_ROOT_PASSWORD=my-password\r\n restart: always\r\n\r\nwordpress-db-backup:\r\n image: zeenlym\/mariadb-backup\r\n environment:\r\n - TIMEZONE=Europe\/Berlin\r\n - SCHEDULE=0 0 * * *\r\n - BACKUP_METHOD=mysqldump\r\n - MYSQL_HOST=wordpress-mysql\r\n - MYSQL_DATABASE=wordpress\r\n - MYSQL_USER=root\r\n - MYSQL_PASSWORD=my-password\r\n volumes:\r\n - \/backup\/wordpress-mysql:\/backup\r\n\r\nphpmyadmin:\r\n image: phpmyadmin\/phpmyadmin\r\n container_name: phpmyadmin\r\n environment:\r\n - PMA_ARBITRARY=1\r\n restart: always\r\n ports:\r\n - 8006:80\r\n volumes:\r\n - \/sessions\r\n<\/pre>\n<p>In order to run the application on a different machine you just need to make sure that the mapped directories are available. Im my example this is:<\/p>\n<ul>\n<li>\/srv\/wordpress-mysql<\/li>\n<li>\/srv\/wordpress<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>It is very easy with Docker to have a working WordPress up in no time with the official WordPress Image on Docker Hub. If you want to have an image which is backed up properly and that you can migrate w\/o any problems on a different machine, you need to [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":243,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_crdt_document":"","_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":""},"categories":[5],"tags":[],"class_list":["post-241","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-infrastructure"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Docker + Wordpress = Danger - Phil Schatzmann<\/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:\/\/www.pschatzmann.ch\/home\/2017\/11\/10\/docker-wordpress-danger\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Docker + Wordpress = Danger - Phil Schatzmann\" \/>\n<meta property=\"og:description\" content=\"It is very easy with Docker to have a working WordPress up in no time with the official WordPress Image on Docker Hub. If you want to have an image which is backed up properly and that you can migrate w\/o any problems on a different machine, you need to [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pschatzmann.ch\/home\/2017\/11\/10\/docker-wordpress-danger\/\" \/>\n<meta property=\"og:site_name\" content=\"Phil Schatzmann\" \/>\n<meta property=\"article:published_time\" content=\"2017-11-10T15:17:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-11-21T21:22:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2017\/11\/wordpress.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"270\" \/>\n\t<meta property=\"og:image:height\" content=\"187\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"pschatzmann\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"pschatzmann\" \/>\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:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2017\\\/11\\\/10\\\/docker-wordpress-danger\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2017\\\/11\\\/10\\\/docker-wordpress-danger\\\/\"},\"author\":{\"name\":\"pschatzmann\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\"},\"headline\":\"Docker + WordPress = Danger\",\"datePublished\":\"2017-11-10T15:17:41+00:00\",\"dateModified\":\"2020-11-21T21:22:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2017\\\/11\\\/10\\\/docker-wordpress-danger\\\/\"},\"wordCount\":501,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2017\\\/11\\\/10\\\/docker-wordpress-danger\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/wordpress.jpeg\",\"articleSection\":[\"Infrastructure\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2017\\\/11\\\/10\\\/docker-wordpress-danger\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2017\\\/11\\\/10\\\/docker-wordpress-danger\\\/\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2017\\\/11\\\/10\\\/docker-wordpress-danger\\\/\",\"name\":\"Docker + Wordpress = Danger - Phil Schatzmann\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2017\\\/11\\\/10\\\/docker-wordpress-danger\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2017\\\/11\\\/10\\\/docker-wordpress-danger\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/wordpress.jpeg\",\"datePublished\":\"2017-11-10T15:17:41+00:00\",\"dateModified\":\"2020-11-21T21:22:53+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2017\\\/11\\\/10\\\/docker-wordpress-danger\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2017\\\/11\\\/10\\\/docker-wordpress-danger\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2017\\\/11\\\/10\\\/docker-wordpress-danger\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/wordpress.jpeg\",\"contentUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/wordpress.jpeg\",\"width\":270,\"height\":187},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2017\\\/11\\\/10\\\/docker-wordpress-danger\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Docker + WordPress = Danger\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#website\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/\",\"name\":\"Phil Schatzmann Consulting\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\",\"name\":\"pschatzmann\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/pschatzmann.png\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/pschatzmann.png\",\"contentUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/pschatzmann.png\",\"width\":305,\"height\":305,\"caption\":\"pschatzmann\"},\"logo\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/pschatzmann.png\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Docker + Wordpress = Danger - Phil Schatzmann","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:\/\/www.pschatzmann.ch\/home\/2017\/11\/10\/docker-wordpress-danger\/","og_locale":"en_US","og_type":"article","og_title":"Docker + Wordpress = Danger - Phil Schatzmann","og_description":"It is very easy with Docker to have a working WordPress up in no time with the official WordPress Image on Docker Hub. If you want to have an image which is backed up properly and that you can migrate w\/o any problems on a different machine, you need to [&hellip;]","og_url":"https:\/\/www.pschatzmann.ch\/home\/2017\/11\/10\/docker-wordpress-danger\/","og_site_name":"Phil Schatzmann","article_published_time":"2017-11-10T15:17:41+00:00","article_modified_time":"2020-11-21T21:22:53+00:00","og_image":[{"width":270,"height":187,"url":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2017\/11\/wordpress.jpeg","type":"image\/jpeg"}],"author":"pschatzmann","twitter_card":"summary_large_image","twitter_misc":{"Written by":"pschatzmann","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.pschatzmann.ch\/home\/2017\/11\/10\/docker-wordpress-danger\/#article","isPartOf":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2017\/11\/10\/docker-wordpress-danger\/"},"author":{"name":"pschatzmann","@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1"},"headline":"Docker + WordPress = Danger","datePublished":"2017-11-10T15:17:41+00:00","dateModified":"2020-11-21T21:22:53+00:00","mainEntityOfPage":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2017\/11\/10\/docker-wordpress-danger\/"},"wordCount":501,"commentCount":0,"publisher":{"@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1"},"image":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2017\/11\/10\/docker-wordpress-danger\/#primaryimage"},"thumbnailUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2017\/11\/wordpress.jpeg","articleSection":["Infrastructure"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.pschatzmann.ch\/home\/2017\/11\/10\/docker-wordpress-danger\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.pschatzmann.ch\/home\/2017\/11\/10\/docker-wordpress-danger\/","url":"https:\/\/www.pschatzmann.ch\/home\/2017\/11\/10\/docker-wordpress-danger\/","name":"Docker + Wordpress = Danger - Phil Schatzmann","isPartOf":{"@id":"https:\/\/www.pschatzmann.ch\/home\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2017\/11\/10\/docker-wordpress-danger\/#primaryimage"},"image":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2017\/11\/10\/docker-wordpress-danger\/#primaryimage"},"thumbnailUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2017\/11\/wordpress.jpeg","datePublished":"2017-11-10T15:17:41+00:00","dateModified":"2020-11-21T21:22:53+00:00","breadcrumb":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2017\/11\/10\/docker-wordpress-danger\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pschatzmann.ch\/home\/2017\/11\/10\/docker-wordpress-danger\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.pschatzmann.ch\/home\/2017\/11\/10\/docker-wordpress-danger\/#primaryimage","url":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2017\/11\/wordpress.jpeg","contentUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2017\/11\/wordpress.jpeg","width":270,"height":187},{"@type":"BreadcrumbList","@id":"https:\/\/www.pschatzmann.ch\/home\/2017\/11\/10\/docker-wordpress-danger\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.pschatzmann.ch\/home\/"},{"@type":"ListItem","position":2,"name":"Docker + WordPress = Danger"}]},{"@type":"WebSite","@id":"https:\/\/www.pschatzmann.ch\/home\/#website","url":"https:\/\/www.pschatzmann.ch\/home\/","name":"Phil Schatzmann Consulting","description":"","publisher":{"@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.pschatzmann.ch\/home\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1","name":"pschatzmann","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/08\/pschatzmann.png","url":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/08\/pschatzmann.png","contentUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/08\/pschatzmann.png","width":305,"height":305,"caption":"pschatzmann"},"logo":{"@id":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/08\/pschatzmann.png"}}]}},"post_mailing_queue_ids":[],"_links":{"self":[{"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts\/241","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/comments?post=241"}],"version-history":[{"count":1,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts\/241\/revisions"}],"predecessor-version":[{"id":2234,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts\/241\/revisions\/2234"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/media\/243"}],"wp:attachment":[{"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/media?parent=241"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/categories?post=241"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/tags?post=241"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}