{"id":3573,"date":"2026-04-30T15:05:30","date_gmt":"2026-04-30T15:05:30","guid":{"rendered":"https:\/\/www.digitalassassins.co.uk\/news\/?p=3573"},"modified":"2026-05-01T01:06:15","modified_gmt":"2026-05-01T01:06:15","slug":"openclaw-docker-install-homebrew","status":"publish","type":"post","link":"https:\/\/www.digitalassassins.co.uk\/news\/openclaw-docker-install-homebrew\/","title":{"rendered":"OpenClaw Docker install Homebrew"},"content":{"rendered":"\n<style> .wp-block-code code{padding:15px; padding-left:15px; background: black;} code, pre{background: black; color:red; font-weight:600; padding:2px;} <\/style>\n\n\n\n<h3>How to Fix &#8220;Brew Not Found&#8221; Errors in OpenClaw Docker Containers<\/h3>\n\n\n\n<p>Working with the Docker container for OpenClaw isn&#8217;t the best. We created a single-line Docker exec command to install Homebrew into a running Docker OpenClaw container. <br><\/p>\n\n\n\n<p>If you are running <strong class=\"\">OpenClaw<\/strong> via Docker, you may have encountered a frustrating roadblock when trying to install specific skills (such as <code>openai-whisper<\/code> or <code>yt-dlp<\/code>). The error is straightforward but disruptive: the system attempts to call <em><strong>brew<\/strong><\/em>, but fails because <strong class=\"\">Homebrew is not installed in the standard OpenClaw Docker image.<\/strong><\/p>\n\n\n\n<p>In this guide, we\u2019ll explain why this happens and provide a one-line fix to get your container running with full dependency support.<\/p>\n\n\n\n<h2>Why isn&#8217;t Homebrew included in the OpenClaw Docker Image?<\/h2>\n\n\n\n<p>At first glance, it seems logical for the devs to include Homebrew (or Linuxbrew) pre-installed, especially since many OpenClaw skills rely on it to manage external binaries and dependencies. However, there are two primary reasons why the official image remains &#8220;lean&#8221;:<\/p>\n\n\n\n<ol><li><strong class=\"\">Image Size &amp; Optimisation<\/strong>:&nbsp;Docker best practices dictate that images should be as small and lightweight as possible. Including Homebrew\u2014and the entire dependency tree it brings with it\u2014would significantly increase the image size, leading to slower pull times and higher storage costs.<\/li><li><strong>Security &amp; Layering:<\/strong>&nbsp;Standardising on a minimal base allows for a more secure environment. By not including a package manager by default, the attack surface is reduced. Developers can then layer only the specific tools they need onto the container.<\/li><\/ol>\n\n\n\n<p>The problem arises when you attempt to install a &#8220;Skill&#8221; within the running container that expects <code>brew<\/code> to be present in the <code>$PATH<\/code>. Because the container is isolated, it cannot access your host machine&#8217;s Homebrew installation.<\/p>\n\n\n\n<h2>The Solution: The One-Line Fix<\/h2>\n\n\n\n<p>You don&#8217;t need to rebuild your entire Dockerfile or manually navigate complex installation steps. You can inject Homebrew into your existing OpenClaw container using a single command.<\/p>\n\n\n\n<p><strong class=\"\">Run the following script inside your terminal &#8211; GitBash, CMD or Console to automate the installation<\/strong><br><em>Changing <strong>$YourContainerID<\/strong> with your own container ID:<\/em><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>docker exec -it -u root $YourContainerID bash -c 'mkdir -p \/home\/linuxbrew\/.linuxbrew &amp;&amp; curl -L https:\/\/github.com\/Homebrew\/brew\/tarball\/main | tar xz --strip-components 1 -C \/home\/linuxbrew\/.linuxbrew &amp;&amp; useradd -m -s \/bin\/bash brewuser &amp;&amp; echo '\"'\"'brewuser:brewpass'\"'\"' | chpasswd &amp;&amp; chown -R brewuser:brewuser \/home\/linuxbrew &amp;&amp; printf '\"'\"'#!\/bin\/bash\\necho brewpass | su - brewuser -c \"\/home\/linuxbrew\/.linuxbrew\/bin\/brew $*\"\\n'\"'\"' &gt; \/usr\/bin\/brew &amp;&amp; chmod +x \/usr\/bin\/brew &amp;&amp; echo '\"'\"'export PATH=\"\/usr\/bin:$PATH\"'\"'\"' &gt;&gt; ~\/.bashrc &amp;&amp; echo '\"'\"'eval \"$(\/home\/linuxbrew\/.linuxbrew\/bin\/brew shellenv)\"'\"'\"' &gt;&gt; ~\/.bashrc &amp;&amp; source ~\/.bashrc'<\/code><\/pre>\n\n\n\n<p><strong>Note:<\/strong> Please note that this command creates directories and needs to be run as root to create a brew user and set permissions<\/p>\n\n\n\n<h2>What does the code do?<\/h2>\n\n\n\n<p> Never run a script you don&#8217;t understand. This is what the script does:<\/p>\n\n\n\n<ol><li>mkdir &#8211; Creates the directory needed for Linux Brew <code><strong>\/home\/linuxbrew\/.linuxbrew<\/strong><\/code><\/li><li>curl &#8211; downloads the tarball from the official Homebrew GitHub project and extracts it into the <code><strong>\/home\/linuxbrew\/.linuxbrew<\/strong><\/code> directory<\/li><li>useradd &#8211; adds a <code><em>brewuser<\/em><\/code> with the password <code><em>brewpassword<\/em><\/code> (you can change this if you want)<\/li><li>chown &#8211; takes control of the <em><strong><code>linuxbrew<\/code><\/strong><\/em> directory for the user <em><strong><code>brewuser<\/code><\/strong><\/em><\/li><li>printf &#8211; generates a proxy script that passes a command sent to <em><strong><code>\/usr\/bin\/brew<\/code><\/strong><\/em> and forwards it to <em><strong><code>\/home\/linuxbrew\/.linuxbrew\/bin\/brew<\/code><\/strong><\/em> as a standard user, maintaining Homebrew needs to run as a standard user.<\/li><li>chmod &#8211; makes the <em><strong><code>\/usr\/bin\/brew<\/code><\/strong><\/em> folder executable<\/li><li>echo &#8211; adds the brew path to the PATH environment variable, so it can be called from the terminal, by adding it to the .bashrc file.<\/li><\/ol>\n\n\n\n<h2>Verification<\/h2>\n\n\n\n<p>Once the script has finished executing, verify that the installation was successful by checking the version of brew (Replacing $YourContainerID with your container ID):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>docker exec -it -u node $YourContainerID bash -c 'brew --version'<\/code><\/pre>\n\n\n\n<p>If you see a version number returned, you are ready to go! You can now proceed with installing your required OpenClaw skills without encountering &#8220;command not found&#8221; errors.<\/p>\n\n\n\n<p>This prevents you from having to deal with constant patches, patching the constantly changing OpenClaw Docker installer script, or dealing with Custom Docker Images where you don&#8217;t know what is installed in the background. You can build from source with the official OpenClaw git repository.<\/p>\n\n\n\n<p>You could also do what I have done and build a script that downloads the official repository, builds OpenClaw and installs Homebrew in one go. Here is the script if you need it:<\/p>\n\n\n\n<h2>OpenClaw with Homebrew Pre-Installed with a Single Script:<\/h2>\n\n\n\n<p>Create a folder you wish to build from, e.g. C:\/Docker\/OpenClaw if using Docker Desktop for Windows. Create a new text file and copy the script below, save it naming it installer.sh <em>(Needs to be run with GitBash if you are on Windows)<\/em><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>folder=\"my-openclaw\"\nexport OPENCLAW_GATEWAY_PORT=18789\nexport OPENCLAW_BRIDGE_PORT=18790\nsaveDirectory=\"config\"\nexport OPENCLAW_IMAGE_VERSION=\"2026.4.22\"\n\nexport OPENCLAW_IMAGE=\"ghcr.io\/openclaw\/openclaw:${OPENCLAW_IMAGE_VERSION}\"\nexport OPENCLAW_HOME_VOLUME=\"home_data\"\nexport OPENCLAW_CONFIG_DIR=\".\/..\/${saveDirectory}\/.openclaw\/\"\nexport OPENCLAW_WORKSPACE_DIR=\"${OPENCLAW_CONFIG_DIR}\/workspace\/\"\nexport OPENCLAW_DOCKER_APT_PACKAGES=\"jq\"\nexport OPENCLAW_LINUXBREW_DIR=\"${OPENCLAW_CONFIG_DIR}\/linuxbrew\/\"\n\n#export OPENCLAW_EXTRA_MOUNTS=\"${OPENCLAW_LINUXBREW_DIR}:\/home\/linuxbrew\/,${OPENCLAW_CONFIG_DIR}\/.config:\/home\/.config\/\"\nexport DOCKER_CLI_HINTS=false\n\n## clean up old install\nread -p \"Would you like to clean the old install? &#91;y\/n]: \" confirm\nif &#91;&#91; $confirm == &#91;yY] || $confirm == &#91;yY]&#91;eE]&#91;sS] ]] ; then\n\tif &#91; -d \".\/${folder}\/\" ] ; then\n\t\techo \"Removing Git Folder..\"\n\t\trm -r -f \".\/${folder}\/\";\n\tfi\t\n\tif &#91; -d \".\/${saveDirectory}\/.openclaw\/linuxbrew\/.linuxbrew\/var\/homebrew\/tmp\/\" ]; then\n\t\techo \"Temp LinuxBrew Directory found.. Removing files..\"\n\t\trm -r -f \".\/${saveDirectory}\/.openclaw\/linuxbrew\/.linuxbrew\/var\/homebrew\/tmp\/\"\n\tfi\nfi\nif &#91; ! -d \".\/${folder}\/\" ]; then\n\t# pull from git\n\tif &#91; OPENCLAW_IMAGE_VERSION == \"latest\" ] ; then\n\t\tgit clone https:\/\/github.com\/openclaw\/openclaw.git $folder\n\telse\n\t\tgit clone -b v${OPENCLAW_IMAGE_VERSION} --single-branch https:\/\/github.com\/openclaw\/openclaw.git $folder\n\tfi\nfi\n## would you like to skip onboarding?\nread -p \"Would you like to skip onboarding? &#91;y\/n]: \" confirm\nif &#91;&#91; $confirm == &#91;yY] || $confirm == &#91;yY]&#91;eE]&#91;sS] ]] ; then\n\texport OPENCLAW_SKIP_ONBOARDING=\"1\"\nelse\n\texport OPENCLAW_SKIP_ONBOARDING=\"0\"\nfi\n## now run the script\necho \"Running main installer script..\"\n.\/$folder\/scripts\/docker\/setup.sh\nread -p \"Would you like to install Linux Brew? &#91;y\/n]: \" confirm\nif &#91;&#91; $confirm == &#91;yY] || $confirm == &#91;yY]&#91;eE]&#91;sS] ]] ; then\n\tdocker exec -it -u root $(docker ps -a --filter name=$folder --format '{{ .Names }}' | grep $folder) bash -c 'mkdir -p \/home\/linuxbrew\/.linuxbrew &amp;&amp; curl -L https:\/\/github.com\/Homebrew\/brew\/tarball\/main | tar xz --strip-components 1 -C \/home\/linuxbrew\/.linuxbrew &amp;&amp; useradd -m -s \/bin\/bash brewuser &amp;&amp; echo '\"'\"'brewuser:brewpass'\"'\"' | chpasswd &amp;&amp; chown -R brewuser:brewuser \/home\/linuxbrew &amp;&amp; printf '\"'\"'#!\/bin\/bash\\necho brewpass | su - brewuser -c \"\/home\/linuxbrew\/.linuxbrew\/bin\/brew $*\"\\n'\"'\"' &gt; \/usr\/bin\/brew &amp;&amp; chmod +x \/usr\/bin\/brew &amp;&amp; echo '\"'\"'export PATH=\"\/usr\/bin:$PATH\"'\"'\"' &gt;&gt; ~\/.bashrc &amp;&amp; echo '\"'\"'eval \"$(\/home\/linuxbrew\/.linuxbrew\/bin\/brew shellenv)\"'\"'\"' &gt;&gt; ~\/.bashrc &amp;&amp; source ~\/.bashrc'\n\tread -p \"Would you like to install OpenAI Whisper? &#91;y\/n]: \" confirm\n\tif &#91;&#91; $confirm == &#91;yY] || $confirm == &#91;yY]&#91;eE]&#91;sS] ]] ; then\n\t\tdocker exec -it -u root $(docker ps -a --filter name=$folder --format '{{ .Names }}' | grep $folder) bash -c 'brew install openai-whisper'\n\tfi\nfi\nread -p \"Would you like to install Himalaya? &#91;y\/n]: \" confirm\nif &#91;&#91; $confirm == &#91;yY] || $confirm == &#91;yY]&#91;eE]&#91;sS] ]] ; then\n\tdocker exec -it -u root $(docker ps -a --filter name=$folder --format '{{ .Names }}' | grep $folder) bash -c 'curl -sSL https:\/\/raw.githubusercontent.com\/pimalaya\/himalaya\/master\/install.sh | sh'\nfi\nexport CLAWDOCK_DIR=\"${$folder}\"<\/code><\/pre>\n\n\n\n<p>All you need to change is the folder name to change the Docker stack name:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>folder=\"my-openclaw\"<\/code><\/pre>\n\n\n\n<p>If you are running more than one container, you will want to change the ports. Remember to leave 100 port spacing between each container to prevent collision: <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>export OPENCLAW_GATEWAY_PORT=18789 \nexport OPENCLAW_BRIDGE_PORT=18790<\/code><\/pre>\n\n\n\n<p>To choose which version you want to install, enter the date of the Tag version. This will pull the git branch for the compose builder script and also use the corresponding git image to skip the local build process:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>export OPENCLAW_IMAGE_VERSION=\"2026.4.22\"<\/code><\/pre>\n\n\n\n<p><strong>Note:<\/strong> Version 2026.4.22 is the latest stable version as of 01-05-2026<\/p>\n\n\n\n<p>Hopefully, Homebrew will be easier to install manually from the terminal or the Web Interface in future releases, without having to proxy. <\/p>\n\n\n\n<p>Thanks, Peter Steinberger and the OpenClaw contributors, for developing such great software.<\/p>\n\n\n\n<h2>GitHub Scripts:<\/h2>\n\n\n\n<p>You can download the scripts from the following repository:<\/p>\n\n\n\n<p><a href=\"https:\/\/github.com\/digitalassassins\/OpenClawDockerHomebrewInstaller\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/github.com\/digitalassassins\/OpenClawDockerHomebrewInstaller\/ <\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>How to Fix &#8220;Brew Not Found&#8221; Errors in OpenClaw Docker Containers Working with the Docker container for OpenClaw isn&#8217;t the best. We created a single-line Docker exec command to install Homebrew into a running Docker OpenClaw container. If you are running OpenClaw via Docker, you may have encountered a frustrating <a class=\"read-more\" href=\"https:\/\/www.digitalassassins.co.uk\/news\/openclaw-docker-install-homebrew\/\">Continue Reading<\/a><\/p>\n","protected":false},"author":1,"featured_media":3616,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[2],"tags":[250,246,247,248,245,249],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.13 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>OpenClaw Docker install Homebrew - Digital Assassins<\/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.digitalassassins.co.uk\/news\/openclaw-docker-install-homebrew\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"OpenClaw Docker install Homebrew - Digital Assassins\" \/>\n<meta property=\"og:description\" content=\"How to Fix &#8220;Brew Not Found&#8221; Errors in OpenClaw Docker Containers Working with the Docker container for OpenClaw isn&#8217;t the best. We created a single-line Docker exec command to install Homebrew into a running Docker OpenClaw container. If you are running OpenClaw via Docker, you may have encountered a frustrating Continue Reading\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.digitalassassins.co.uk\/news\/openclaw-docker-install-homebrew\/\" \/>\n<meta property=\"og:site_name\" content=\"Digital Assassins\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-30T15:05:30+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-01T01:06:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.digitalassassins.co.uk\/news\/wp-content\/uploads\/2026\/04\/OpenClawDockerServerRoom.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Andy\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Andy\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.digitalassassins.co.uk\/news\/openclaw-docker-install-homebrew\/\",\"url\":\"https:\/\/www.digitalassassins.co.uk\/news\/openclaw-docker-install-homebrew\/\",\"name\":\"OpenClaw Docker install Homebrew - Digital Assassins\",\"isPartOf\":{\"@id\":\"https:\/\/www.digitalassassins.co.uk\/news\/#website\"},\"datePublished\":\"2026-04-30T15:05:30+00:00\",\"dateModified\":\"2026-05-01T01:06:15+00:00\",\"author\":{\"@id\":\"https:\/\/www.digitalassassins.co.uk\/news\/#\/schema\/person\/b2e84b74f89599bd05131e97d2999e60\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.digitalassassins.co.uk\/news\/openclaw-docker-install-homebrew\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.digitalassassins.co.uk\/news\/openclaw-docker-install-homebrew\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.digitalassassins.co.uk\/news\/openclaw-docker-install-homebrew\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.digitalassassins.co.uk\/news\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"OpenClaw Docker install Homebrew\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.digitalassassins.co.uk\/news\/#website\",\"url\":\"https:\/\/www.digitalassassins.co.uk\/news\/\",\"name\":\"Digital Assassins\",\"description\":\"Technology &amp; Web News\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.digitalassassins.co.uk\/news\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.digitalassassins.co.uk\/news\/#\/schema\/person\/b2e84b74f89599bd05131e97d2999e60\",\"name\":\"Andy\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.digitalassassins.co.uk\/news\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b04c75b81f862ff05f9ded67030268ef?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b04c75b81f862ff05f9ded67030268ef?s=96&d=mm&r=g\",\"caption\":\"Andy\"},\"url\":\"https:\/\/www.digitalassassins.co.uk\/news\/author\/andy\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"OpenClaw Docker install Homebrew - Digital Assassins","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.digitalassassins.co.uk\/news\/openclaw-docker-install-homebrew\/","og_locale":"en_GB","og_type":"article","og_title":"OpenClaw Docker install Homebrew - Digital Assassins","og_description":"How to Fix &#8220;Brew Not Found&#8221; Errors in OpenClaw Docker Containers Working with the Docker container for OpenClaw isn&#8217;t the best. We created a single-line Docker exec command to install Homebrew into a running Docker OpenClaw container. If you are running OpenClaw via Docker, you may have encountered a frustrating Continue Reading","og_url":"https:\/\/www.digitalassassins.co.uk\/news\/openclaw-docker-install-homebrew\/","og_site_name":"Digital Assassins","article_published_time":"2026-04-30T15:05:30+00:00","article_modified_time":"2026-05-01T01:06:15+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/www.digitalassassins.co.uk\/news\/wp-content\/uploads\/2026\/04\/OpenClawDockerServerRoom.jpg","type":"image\/jpeg"}],"author":"Andy","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Andy","Estimated reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.digitalassassins.co.uk\/news\/openclaw-docker-install-homebrew\/","url":"https:\/\/www.digitalassassins.co.uk\/news\/openclaw-docker-install-homebrew\/","name":"OpenClaw Docker install Homebrew - Digital Assassins","isPartOf":{"@id":"https:\/\/www.digitalassassins.co.uk\/news\/#website"},"datePublished":"2026-04-30T15:05:30+00:00","dateModified":"2026-05-01T01:06:15+00:00","author":{"@id":"https:\/\/www.digitalassassins.co.uk\/news\/#\/schema\/person\/b2e84b74f89599bd05131e97d2999e60"},"breadcrumb":{"@id":"https:\/\/www.digitalassassins.co.uk\/news\/openclaw-docker-install-homebrew\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.digitalassassins.co.uk\/news\/openclaw-docker-install-homebrew\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.digitalassassins.co.uk\/news\/openclaw-docker-install-homebrew\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.digitalassassins.co.uk\/news\/"},{"@type":"ListItem","position":2,"name":"OpenClaw Docker install Homebrew"}]},{"@type":"WebSite","@id":"https:\/\/www.digitalassassins.co.uk\/news\/#website","url":"https:\/\/www.digitalassassins.co.uk\/news\/","name":"Digital Assassins","description":"Technology &amp; Web News","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.digitalassassins.co.uk\/news\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/www.digitalassassins.co.uk\/news\/#\/schema\/person\/b2e84b74f89599bd05131e97d2999e60","name":"Andy","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.digitalassassins.co.uk\/news\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b04c75b81f862ff05f9ded67030268ef?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b04c75b81f862ff05f9ded67030268ef?s=96&d=mm&r=g","caption":"Andy"},"url":"https:\/\/www.digitalassassins.co.uk\/news\/author\/andy\/"}]}},"_links":{"self":[{"href":"https:\/\/www.digitalassassins.co.uk\/news\/wp-json\/wp\/v2\/posts\/3573"}],"collection":[{"href":"https:\/\/www.digitalassassins.co.uk\/news\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.digitalassassins.co.uk\/news\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.digitalassassins.co.uk\/news\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.digitalassassins.co.uk\/news\/wp-json\/wp\/v2\/comments?post=3573"}],"version-history":[{"count":37,"href":"https:\/\/www.digitalassassins.co.uk\/news\/wp-json\/wp\/v2\/posts\/3573\/revisions"}],"predecessor-version":[{"id":3621,"href":"https:\/\/www.digitalassassins.co.uk\/news\/wp-json\/wp\/v2\/posts\/3573\/revisions\/3621"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.digitalassassins.co.uk\/news\/wp-json\/wp\/v2\/media\/3616"}],"wp:attachment":[{"href":"https:\/\/www.digitalassassins.co.uk\/news\/wp-json\/wp\/v2\/media?parent=3573"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.digitalassassins.co.uk\/news\/wp-json\/wp\/v2\/categories?post=3573"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.digitalassassins.co.uk\/news\/wp-json\/wp\/v2\/tags?post=3573"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}