skip to Main Content

Get "https://registry-1.docker.io/v2/": proxyconnect tcp: dial tcp 192.168.65.1:3128

docker run -d --name=grafana -p 3000:3000 grafana/grafana-enterprise:9.2.0 Unable to find image 'grafana/grafana-enterprise:9.2.0' locally docker: Error response from daemon: Get "https://registry-1.docker.io/v2/": proxyconnect tcp: dial tcp 192.168.65.1:3128: connect: connection refused. How to solve this? https://registry-1.docker.io/v2/ the image when tried to access from…

VIEW QUESTION

React php connecting with a different port

I have two files opening a new socket and want them to connect to each other using React PHP. The following two files are the sockets: First file test1.php <?php include 'vendor/autoload.php'; $socket = new ReactSocketSocketServer('127.0.0.1:3030'); $socket->on('connection', function(ReactSocketConnectionInterface $connection) {…

VIEW QUESTION
Back To Top
Search