-
Notifications
You must be signed in to change notification settings - Fork 287
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
installation problem #548
Comments
It might be that your user isn't allowed to execute docker commands. Can you confirm that your user is added to the docker group by typing If you need to add a user to the docker group that you’re not logged in as, declare that username explicitly using |
tried but still the problem persists |
sudo apt update |
The use of the docker.io package isn't recommended (it's generally an older version). To get the right version, you'll want to uninstall the older versions first: $ sudo apt-get remove docker docker-engine docker.io containerd runc and install the Update the apt package index and install packages to allow apt to use a repository over HTTPS: $ sudo apt-get update
$ sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common Add the Docker GPG key: $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - Add the right repository to get new docker packages from $ sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable" Install the latest version: $ sudo apt-get update
$ sudo apt-get install docker-ce docker-ce-cli containerd.io There's a great community tutorial from Digital Ocean here that walks through the installation and the install docs from Docker for Ubuntu can be found here |
great problem resolved..
…On Fri, 2 Oct 2020 at 20:57, Leon Stigter ***@***.***> wrote:
The use of the docker.io package isn't recommended (it's generally an
older version). To get the right version, you'll want to uninstall the
older versions first:
$ sudo apt-get remove docker docker-engine docker.io containerd runc
and install the docker-ce, which both Ubuntu and Docker recommend:
Update the apt package index and install packages to allow apt to use a
repository over HTTPS:
$ sudo apt-get update
$ sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common
Add the Docker GPG key:
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
Add the right repository to get new docker packages from
$ sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) \ stable"
Install the latest version:
$ sudo apt-get update
$ sudo apt-get install docker-ce docker-ce-cli containerd.io
There's a great community tutorial from Digital Ocean here
<https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-20-04>
that walks through the installation and the install docs from Docker for
Ubuntu can be found here <https://docs.docker.com/engine/install/ubuntu/>
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#548 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AOYI3SM3UQR34MH6WYFE44TSIXWOVANCNFSM4SAXRC7Q>
.
|
Awesome! Good luck on your Flogo journey |
Hi, can you guide how to restart the project once shut..
am trying with # docker image ID but not happening
…On Fri, 2 Oct 2020 at 22:25, Leon Stigter ***@***.***> wrote:
Awesome! Good luck on your Flogo journey
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#548 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AOYI3SMRL3BC43UZ33H2AF3SIYAWPANCNFSM4SAXRC7Q>
.
|
In docker you have images and containers ... a container is an instance of a image You start a container via "docker run " if you don't know the id and/or name use docker ps -a Check out a few Docker tutorials for better usage instructions ;-) |
is the flogo project still updating, I saw that it is no long updated recent months |
I think you are looking in the wrong place ..... everything moved to https://github.com/project-flogo quite a while back. |
What is your question?
I have tried to install web ui but it was failed. On re installation attempt it is showing
docker run -it -p 3303:3303 flogo/flogo-docker eula-accept
docker: Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Post http://%2Fvar%2Frun%2Fdocker.sock/v1.40/containers/create: dial unix /var/run/docker.sock: connect: permission denied.
See 'docker run --help'.
Please tell us about your environment (Operating system, docker version, browser & web ui version, etc):
I am using ubuntu 20.04 amd64
Flogo version (CLI & contrib/lib. If unknown, leave empty or state unknown): 0.X.X
The text was updated successfully, but these errors were encountered: