skip to Main Content

docker-compose build behind proxy. failed to solve: rpc error . dial tcp: lookup auth.docker.io. on rockylinux image

failed to solve: rpc error: code = Unknown desc = failed to solve with frontend dockerfile.v0: failed to create LLB definition: failed to authorize: rpc error: code = Unknown desc = failed to fetch anonymous token: Get "https://auth.docker.io/token?scope=repository%3Alibrary%2Frockylinux%3Apull&service=registry.docker.io": dial tcp:…

VIEW QUESTION

Vite + React Docker

I'm trying to run my vite+react app using the docker container, the code is running fine but unfortunately, it's not opening in localhost 3000 DockerFile FROM node:18-alpine EXPOSE 3000 WORKDIR /react-vite-app COPY package.json . RUN yarn install COPY . .…

VIEW QUESTION
Back To Top
Search