skip to Main Content

Centos – Can I build arm32 docker files with dockerhub

I have DockerHub set up to autobuild my Dockerfile stored in a BitBucket repository. Every time a modification is made to the Dockerfile, and this works fine https://bitbucket.org/ijabz/songkongdocker/src/master/Dockerfile I also have a separate repostitory https://bitbucket.org/ijabz/songkongdockerarm32/src/master/Dockerfile that builds an arm32 version…

VIEW QUESTION

Error response from daemon: Get "https://registry-1.docker.io/v2/": proxyconnect tcp: dial tcp: lookup proxy.example.com on 8.8.8.8:53: no such host

The error I got: pegasus@pegasus:~/Downloads/Docker_deb$ sudo docker run hello-world Unable to find image 'hello-world:latest' locally docker: Error response from daemon: Get "https://registry-1.docker.io/v2/": proxyconnect tcp: dial tcp: lookup proxy.example.com on 8.8.8.8:53: no such host. See 'docker run --help'. I installed docker…

VIEW QUESTION

What happens when we build a Docker image?

Suppose I have the .NET Framework 4.8 SDK and runtime installed on my local machine. I have a dockerfile having the base image instruction FROM mcr.microsoft.com/dotnet/framework/sdk:4.8. When I build the image, would it install the .NET Framework 4.8 SDK and…

VIEW QUESTION
Back To Top
Search