डॉकटर स्नैप: डॉकर डेमन से कनेक्ट नहीं हो सकता। क्या इस मेजबान पर डोकर डेमॉन चल रहा है?


15

मैंने अपने Ubuntu 16.04 मशीन में docker Snap पैकेज को जोड़ा

sudo snap install docker

अब, जब मैं इसका उपयोग करने की कोशिश करता हूं, तो मुझे निम्नलिखित त्रुटि मिलती है ...

डोकर डेमॉन से कनेक्ट नहीं हो सकता। क्या इस मेजबान पर डोकर डेमॉन चल रहा है?

जवाबों:


11

विकसित हो रहे तड़क-भड़क वाले मॉडल में कारावास के मुद्दों के कारण, डॉकर डिफ़ॉल्ट रूप से पूर्ण स्वाद वाला नहीं है ( स्नैपक्राफ्ट फोरम पर चर्चा देखें )।

उचित निर्धारण होने तक आस-पास के कार्य (अर्थात विराम) कैसे करें, इस पर कुछ उपयोगी निर्देश प्राप्त करने के लिए। आप बस स्नैप में पैक किए गए डॉकटर सहायता एप्लिकेशन की जांच कर सकते हैं।

$ docker.help
Docker snap: Docker Linux container runtime.

Due to the confinement issues on snappy, it requires some manual setup to make docker-snap works on your machine.
We'll take you through the steps needed to set up docker snap work for you on ubuntu core and ubuntu classic.

On Ubuntu classic, before installing the docker snap, 
please run the following command to add the login user into docker group.
    sudo addgroup --system docker
    sudo adduser $USER docker
    newgrp docker

On Ubuntu Core 16, after installing the docker snap from store,
Firstly, you need to connect the two interfaces as they're not auto-connected by default.
    sudo snap connect docker:account-control :account-control
    sudo snap connect docker:home :home

Secondly, reload the snap and allows the user to login to the new group "docker-snap".
    snap disable docker
    snap enable  docker
    newgrp docker-snap

Then have fun with docker in snappy.

अंतिम आदेश विफल ...

$ newgrp docker-snap
newgrp: group 'docker-snap' does not exist

हालाँकि, मैंने असफलता के आधार पर किसी भी नकारात्मक प्रभाव को नहीं देखा, और डॉकर अब उसी तरह से काम करता है जैसा मैं उम्मीद करता हूँ।


6

snap start dockerसेवा को सक्रिय करने के लिए उपयोग करें । इसे रूट अनुमति की आवश्यकता हो सकती है।


मदद नहीं की:Cannot connect to the Docker daemon
1919 को

0

मुझे यह काम चल रहा है:

sudo snap start docker

फिर sudoबाद के डॉकटर कमांड पर चल रहा है :

sudo docker-compose up --build

sudoबाद के डॉकटर आदेशों के बिना , Cannot connect to the Docker daemonत्रुटि बनी रहती है।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.