E: gnupg, gnupg2 and gnupg1 do not seem to be installed, but one of them is required for this operation

I have installed docker on windows 10 pro. I am facing an issue while running the following command in git-bash. docker-compose up -d –build and got following error. E: gnupg, gnupg2 and gnupg1 do not seem to be installed, but one of them is required for this operation (23) Failed writing body Error executing command, … Read more

How to upgrade docker-compose to latest version

I have installed docker-compose using the command sudo apt install docker-compose It installed docker-compose version 1.8.0 and build unknown I need the latest version of docker-compose or at least a version of 1.9.0 Can anyone please let me know what approach I should take to upgrade it or uninstall and re-install the latest version. I … Read more

How to specify Memory & CPU limit in docker compose version 3

I am unable to specify CPU and memory limitation for services specified in version 3. With version 2 it works fine with mem_limit & cpu_shares parameters under the services. But it fails while using version 3, putting them under deploy section doesn’t seem worthy unless I am using swarm mode. Can somebody help? version: “3” … Read more

Why is Docker installed but not Docker Compose?

I have installed docker on CentOS 7 by running following commands, curl -sSL https://get.docker.com/ | sh systemctl enable docker && systemctl start docker docker run hello-world NOTE: helloworld runs correctly and no issues. however when I try to run docker-compose (docker-compose.yml exists and valid) it gives me the error on CentOS only (Windows version works … Read more

Docker-Compose can’t connect to Docker Daemon

I am getting an error message saying I can’t connect to the docker daemon. I have looked into other people’s answers who have had similar issues but it hasn’t helped. I am running the version of Ubuntu 15.10. I will try to provide all the info I have. root@# docker-compose -f docker-compose-deps.yml up -d ERROR: … Read more

Docker Error bind: address already in use

When I run docker-compose up in my Docker project it failes with the following message: Error starting userland proxy: listen tcp 0.0.0.0:3000: bind: address already in use netstat -pna | grep 3000 shows this: tcp 0 0 0.0.0.0:3000 0.0.0.0:* LISTEN – I’ve already tried docker-compose down, but it doesn’t help. 31 Answers 31 In your … Read more