rack-plugin-toolchain icon indicating copy to clipboard operation
rack-plugin-toolchain copied to clipboard

Error using Docker build method

Open hires opened this issue 2 years ago • 7 comments

'Unable to find image 'rack-plugin-toolchain:13' locally docker: Error response from daemon: pull access denied for rack-plugin-toolchain, repository does not exist or may require 'docker login': denied: requested access to the resource is denied.'

Not sure what I'm doing wrong here. I'm running on Ubuntu 22.04 amd64 with Docker 24.0.5.

The only difference from the instructions is that I have a newer MacOS SDK (14.0) since my Mac has the latest XCode and there doesn't seem to be an easy way to downgrade it.

hires avatar Oct 07 '23 22:10 hires

Have you started Docker? It looks like the Docker daemon is not running.

cschol avatar Oct 08 '23 15:10 cschol

Yes I believe it's running... I use Docker for other development tasks.

hires avatar Oct 08 '23 16:10 hires

What does docker images show?

cschol avatar Oct 15 '23 16:10 cschol

I am also seeing this issue. Docker is running as seen with docker ps

ode2spot avatar Feb 16 '24 03:02 ode2spot

Same question: what does docker images show? It should show the rack-plugin-toolchain image downloaded locally.

cschol avatar Feb 16 '24 13:02 cschol

docker images shows my docker images for embedded development. I am running docker in a WSL2 environment and it looks like the older docker 'build' tool is deprecated in favor of 'buildx/BuilkdKit`. For me the easiest way to get buildx in my WSL2 setup was:

  1. in WSL2, sudo apt remove docker
  2. install DockerDesktop on Windows

Once I did that, I was able to run make docker-build. However, the build failed. I attached the docker-build.log here.

It looks like I need MacOSX11.1.sdk.tar on my system to use the docker build setup. Is that correct?

ode2spot avatar Feb 17 '24 17:02 ode2spot

Yes. In order to build the entire toolchain incl. macOS support you need an official macOS SDK (it does not work with the ones you "find on the internet").

cschol avatar Feb 18 '24 15:02 cschol