{"id":10423,"date":"2023-04-10T21:00:00","date_gmt":"2023-04-10T12:00:00","guid":{"rendered":"https:\/\/taki-lab.site\/bocci\/?p=10423"},"modified":"2023-04-09T07:42:40","modified_gmt":"2023-04-08T22:42:40","slug":"docker-compose%e3%82%92%e4%bd%bf%e7%94%a8%e3%81%99%e3%82%8b","status":"publish","type":"post","link":"https:\/\/taki-lab.site\/bocci\/?p=10423","title":{"rendered":"Docker Compose\u3092\u4f7f\u7528\u3059\u308b"},"content":{"rendered":"\n<p><a href=\"https:\/\/taki-lab.site\/bocci\/?p=10398\">DOCKER\u3067CMD\u30b3\u30de\u30f3\u30c9\u3092\u4ed5\u8fbc\u3093\u3067\u307f\u308b\u3002 | \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f (taki-lab.site)<\/a><\/p>\n\n\n\n<p>Docker\u306f1\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f31\u30b3\u30f3\u30c6\u30ca\u3068\u3044\u3046\u306e\u304c\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9\u3089\u3057\u3044\u3067\u3059\u3002<\/p>\n\n\n\n<p>\u4eca\u56de\u306fPHP\uff0bDB\u3068\u3044\u3046\u69cb\u6210\u3092\u69cb\u7bc9\u3057\u3066\u307f\u305f\u3044\u3068\u601d\u3044\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u3053\u3046\u3044\u3063\u305f\u8907\u6570\u3092\u30a2\u30d7\u30ea\uff08\u30b3\u30f3\u30c6\u30ca\uff09\u3092\u30bb\u30c3\u30c8\u3067\u6271\u3044\u305f\u3044\u5834\u5408\u306f\u3001docker-compose\u3092\u4f7f\u7528\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u69cb\u6210<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"474\" height=\"219\" data-attachment-id=\"10425\" data-permalink=\"https:\/\/taki-lab.site\/bocci\/?attachment_id=10425\" data-orig-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/04\/0a0e9aae3dd6ca80d4bb2f0d40225150.png?fit=527%2C243&amp;ssl=1\" data-orig-size=\"527,243\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"0a0e9aae3dd6ca80d4bb2f0d40225150\" data-image-description=\"\" data-image-caption=\"\" data-medium-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/04\/0a0e9aae3dd6ca80d4bb2f0d40225150.png?fit=300%2C138&amp;ssl=1\" data-large-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/04\/0a0e9aae3dd6ca80d4bb2f0d40225150.png?fit=474%2C219&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/04\/0a0e9aae3dd6ca80d4bb2f0d40225150.png?resize=474%2C219&#038;ssl=1\" alt=\"\" class=\"wp-image-10425\" srcset=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/04\/0a0e9aae3dd6ca80d4bb2f0d40225150.png?w=527&amp;ssl=1 527w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/04\/0a0e9aae3dd6ca80d4bb2f0d40225150.png?resize=300%2C138&amp;ssl=1 300w\" sizes=\"auto, (max-width: 474px) 100vw, 474px\" \/><\/figure>\n\n\n\n<p>PHP\u306fDocker\u30d5\u30a1\u30a4\u30eb\u3067\u3001DB\u306fDockerHub\u3067\u7528\u610f\u3055\u308c\u3066\u3044\u308b\u7269\u3092\u4f7f\u7528\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<p>Dockerfile<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>FROM php:7.4-apache\r\n\r\nRUN apt-get update &amp;&amp; apt-get install -y \\\r\n    tzdata \\\r\n    libpq-dev \\\r\n    &amp;&amp; rm -rf \/var\/lib\/apt\/lists\/* \\\r\n    &amp;&amp; docker-php-ext-install pdo_pgsql\r\n\r\nENV TZ=Asia\/Tokyo<\/code><\/pre>\n\n\n\n<p>php.ini<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;Date]\r\ndate.timezone = Asia\/Tokyo\r\n\r\n&#91;mbstring]\r\nmbstring.language = Japanese\r\n<\/code><\/pre>\n\n\n\n<p>sample1.php<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\r\nprint('\u305f\u3060\u3044\u307e\u306e\u65e5\u6642\u306f\u3001'.date(\"Y-m-d H:i:s\").'\u3067\u3059\u3002&lt;br>');\r\n\r\n$dbname='postgres';\r\n$host='ex11_db';\r\n$dbuser='postgres';\r\n$dbpass='postgres';\r\n\r\ntry {\r\n    $dbh = new PDO(\"pgsql:dbname=$dbname;host=$host\", $dbuser, $dbpass);\r\n    print('\u6b63\u5e38\u306b\u63a5\u7d9a\u3055\u308c\u307e\u3057\u305f\u3002&lt;br>');\r\n\r\n    print('sysid, \u30e6\u30fc\u30b6\u30fc\u540d&lt;br>');\r\n\r\n    $sql = 'SELECT * FROM pg_user';\r\n    foreach ($dbh->query($sql) as $row) {\r\n        print($row&#91;'usesysid'].', ');\r\n        print($row&#91;'usename'].'&lt;br>');\r\n    }\r\n} catch (PDOException $e) {\r\n    print('\u30a8\u30e9\u30fc:'.$e->gwtMessage());\r\n    exit();\r\n}\r\n\r\n?>\r\n<\/code><\/pre>\n\n\n\n<p>docker-compose.yml<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>version: '3.8'\r\n\r\nservices:\r\n  db:\r\n    image: postgres:13.1-alpine\r\n    container_name: 'ex11_db'\r\n    expose:\r\n      - \"5432\"\r\n    environment:\r\n      - POSTGRES_DB=postgres\r\n      - POSTGRES_USER=postgres\r\n      - POSTGRES_PASSWORD=postgres\r\n      - HOGE=hoge\r\n\r\n  web:\r\n    image: ex11\/web:1.0\r\n    build: .\/web\r\n    container_name: 'ex11_web'\r\n    ports:\r\n      - 8080:80\r\n    working_dir: '\/var\/www\/html'\r\n    volumes:\r\n      - .\/web\/php.ini:\/usr\/local\/etc\/php\/php.ini\r\n      - type: bind\r\n        source: .\/web\/src\r\n        target: \/var\/www\/html\r\n    depends_on:\r\n      - db\r\n<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>~\/dockerenv\/ex11$ docker-compose up<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"474\" height=\"178\" data-attachment-id=\"10426\" data-permalink=\"https:\/\/taki-lab.site\/bocci\/?attachment_id=10426\" data-orig-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/04\/5045177f902672acf01dd4ac42887991.png?fit=835%2C314&amp;ssl=1\" data-orig-size=\"835,314\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"5045177f902672acf01dd4ac42887991\" data-image-description=\"\" data-image-caption=\"\" data-medium-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/04\/5045177f902672acf01dd4ac42887991.png?fit=300%2C113&amp;ssl=1\" data-large-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/04\/5045177f902672acf01dd4ac42887991.png?fit=474%2C178&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/04\/5045177f902672acf01dd4ac42887991.png?resize=474%2C178&#038;ssl=1\" alt=\"\" class=\"wp-image-10426\" srcset=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/04\/5045177f902672acf01dd4ac42887991.png?w=835&amp;ssl=1 835w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/04\/5045177f902672acf01dd4ac42887991.png?resize=300%2C113&amp;ssl=1 300w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/04\/5045177f902672acf01dd4ac42887991.png?resize=768%2C289&amp;ssl=1 768w\" sizes=\"auto, (max-width: 474px) 100vw, 474px\" \/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>~\/dockerenv\/ex11$ docker-compose down --rmi all<\/code><\/pre>\n\n\n\n<a href=\"https:\/\/blog.with2.net\/link\/?id=2023426&#038;cid=9200\" title=\"\u65e5\u3005\u306e\u51fa\u6765\u4e8b\u30e9\u30f3\u30ad\u30f3\u30b0\" target=\"_blank\" rel=\"noopener\"><image src=\"https:\/\/taki-lab.site\/bocci\/wp-content\/uploads\/2022\/11\/99c62cdd0038c9d3b540e561ee138b82-1.jpg\"><\/a>\n","protected":false},"excerpt":{"rendered":"<p>DOCKER\u3067CMD\u30b3\u30de\u30f3\u30c9\u3092\u4ed5\u8fbc\u3093\u3067\u307f\u308b\u3002 | \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f (taki-lab.site) Docker\u306f1\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f31\u30b3\u30f3\u30c6\u30ca\u3068\u3044\u3046\u306e\u304c\u57fa\u672c\u7684\u306a\u4f7f\u3044\u65b9\u3089\u3057\u3044\u3067\u3059\u3002 \u4eca\u56de\u306fPHP\uff0bDB\u3068\u3044\u3046\u69cb\u6210\u3092\u69cb &hellip; <a href=\"https:\/\/taki-lab.site\/bocci\/?p=10423\" class=\"more-link\">\u7d9a\u304d\u3092\u8aad\u3080 <span class=\"screen-reader-text\">Docker Compose\u3092\u4f7f\u7528\u3059\u308b<\/span> <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[3],"tags":[],"class_list":["post-10423","post","type-post","status-publish","format-standard","hentry","category-3"],"aioseo_notices":[],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p8SDbY-2I7","jetpack-related-posts":[{"id":10342,"url":"https:\/\/taki-lab.site\/bocci\/?p=10342","url_meta":{"origin":10423,"position":0},"title":"DOCKER\u3067RUN\u30b3\u30de\u30f3\u30c9\u3092\u4ed5\u8fbc\u3093\u3067\u307f\u308b\u3002","author":"taki","date":"2023\u5e743\u670827\u65e5","format":false,"excerpt":"Docker\u3067\u30b3\u30f3\u30c6\u30ca\u4f5c\u6210\u306e\u52c9\u5f37\u3092\u3059\u308b\u3002 | \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f (taki-lab.site\u2026","rel":"","context":"\u6280\u8853","block_context":{"text":"\u6280\u8853","link":"https:\/\/taki-lab.site\/bocci\/?cat=3"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/03\/bf042be350276ed2872b9f53dc3bb06a.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/03\/bf042be350276ed2872b9f53dc3bb06a.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/03\/bf042be350276ed2872b9f53dc3bb06a.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/03\/bf042be350276ed2872b9f53dc3bb06a.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/03\/bf042be350276ed2872b9f53dc3bb06a.png?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/03\/bf042be350276ed2872b9f53dc3bb06a.png?resize=1400%2C800&ssl=1 4x"},"classes":[]},{"id":10500,"url":"https:\/\/taki-lab.site\/bocci\/?p=10500","url_meta":{"origin":10423,"position":1},"title":"Docker\u3067PHP+DB+Laravel\u3092\u69cb\u6210\u3057\u3066\u307f\u308b","author":"taki","date":"2023\u5e744\u670829\u65e5","format":false,"excerpt":"Docker Compose\u3092\u4f7f\u7528\u3059\u308b | \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f (taki-lab.site)\u2026","rel":"","context":"\u6280\u8853","block_context":{"text":"\u6280\u8853","link":"https:\/\/taki-lab.site\/bocci\/?cat=3"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/04\/f28832ff0fe55bae2cadd4577723df49.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":10305,"url":"https:\/\/taki-lab.site\/bocci\/?p=10305","url_meta":{"origin":10423,"position":2},"title":"Docker\u3067\u30b3\u30f3\u30c6\u30ca\u4f5c\u6210\u306e\u52c9\u5f37\u3092\u3059\u308b\u3002","author":"taki","date":"2023\u5e743\u670821\u65e5","format":false,"excerpt":"\u3053\u308c\u307e\u3067\u4e00\u751f\u61f8\u547dDocker\u3092\u907f\u3051\u3066\u304d\u305f\u306e\u3067\u3059\u304c\u3001 \u3069\u3046\u3082\u3059\u3067\u306bDocker\u3067\u30b5\u30fc\u30d3\u30b9\u3092\u904b\u7528\u3059\u308b\u3053\u3068\u2026","rel":"","context":"\u6280\u8853","block_context":{"text":"\u6280\u8853","link":"https:\/\/taki-lab.site\/bocci\/?cat=3"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/03\/fc6586d642d016c64dbb1a3116141c35.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":11414,"url":"https:\/\/taki-lab.site\/bocci\/?p=11414","url_meta":{"origin":10423,"position":3},"title":"\u3010Docker\u3011\u3010GitLab\u3011Windows\u306eDocker\u74b0\u5883\u306bGitLab\u30b5\u30fc\u30d0\u3092\u7acb\u3061\u4e0a\u3052\u308b\u3002","author":"taki","date":"2023\u5e7412\u670814\u65e5","format":false,"excerpt":"\u3053\u3061\u3089\u306e\u8a18\u4e8b\u3092\u53c2\u8003\u306b\u3057\u307e\u3057\u305f\u3002 https:\/\/e-penguiner.com\/gitlab-wit\u2026","rel":"","context":"\u6280\u8853","block_context":{"text":"\u6280\u8853","link":"https:\/\/taki-lab.site\/bocci\/?cat=3"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":10513,"url":"https:\/\/taki-lab.site\/bocci\/?p=10513","url_meta":{"origin":10423,"position":4},"title":"DOCKER\u3067PHP+DB+LARAVEL\u3092\u69cb\u6210\u3057\u3066\u307f\u308b\uff08\u524d\u56de\u306e\u7d9a\u304d\uff09","author":"taki","date":"2023\u5e745\u67081\u65e5","format":false,"excerpt":"Docker\u3067PHP+DB+Laravel\u3092\u69cb\u6210\u3057\u3066\u307f\u308b | \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f (taki-\u2026","rel":"","context":"\u6280\u8853","block_context":{"text":"\u6280\u8853","link":"https:\/\/taki-lab.site\/bocci\/?cat=3"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/05\/db847522341e60bcff99edf8b94497fe.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/05\/db847522341e60bcff99edf8b94497fe.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/05\/db847522341e60bcff99edf8b94497fe.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/05\/db847522341e60bcff99edf8b94497fe.png?resize=700%2C400&ssl=1 2x"},"classes":[]},{"id":10398,"url":"https:\/\/taki-lab.site\/bocci\/?p=10398","url_meta":{"origin":10423,"position":5},"title":"DOCKER\u3067CMD\u30b3\u30de\u30f3\u30c9\u3092\u4ed5\u8fbc\u3093\u3067\u307f\u308b\u3002","author":"taki","date":"2023\u5e744\u67086\u65e5","format":false,"excerpt":"DOCKER\u3067RUN\u30b3\u30de\u30f3\u30c9\u3092\u4ed5\u8fbc\u3093\u3067\u307f\u308b\u3002 | \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f (taki-lab.si\u2026","rel":"","context":"\u51fa\u6765\u4e8b","block_context":{"text":"\u51fa\u6765\u4e8b","link":"https:\/\/taki-lab.site\/bocci\/?cat=9"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/04\/2a02881d483f744058e43e403b624d16.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/04\/2a02881d483f744058e43e403b624d16.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/04\/2a02881d483f744058e43e403b624d16.png?resize=525%2C300&ssl=1 1.5x"},"classes":[]}],"jetpack_likes_enabled":true,"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/10423","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=10423"}],"version-history":[{"count":1,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/10423\/revisions"}],"predecessor-version":[{"id":10427,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/10423\/revisions\/10427"}],"wp:attachment":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=10423"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=10423"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=10423"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}