Questions tagged [docker-ce]

Docker Community Edition (CE) is ideal for developers and small teams looking to get started with Docker and experimenting with container-based apps.

Overview

Docker Community Edition (CE) is ideal for developers and small teams looking to get started with Docker and experimenting with container-based apps. Available for many popular infrastructure platforms like desktop, cloud and open source operating systems, Docker CE provides an installer for a simple and quick install so you can start developing immediately.

Docker CE is integrated and optimized to the infrastructure so you can maintain a native app experience while getting started with Docker. Build the first container, share with team members and automate the dev pipeline, all with Docker Community Edition.

More info

36 questions
15
votes
3 answers

Change default docker0 bridge ip address

After starting docker-ce (18.06.1-ce, build e68fc7a) on Ubuntu Server 16.04, the following is created: $ ifconfig docker0 Link encap:Ethernet HWaddr 02:42:fe:36:81:72 inet addr:172.17.0.1 Bcast:0.0.0.0 Mask:255.255.0.0 UP…
NBajanca
  • 3,544
  • 3
  • 26
  • 53
9
votes
3 answers

How to install docker-ce without internet and intranet yum repository?

I downloaded the RPM package from the official website, but I still need to download some dependencies when I install it. I need to install docker-ce without any network or repository at all, so I need all the RPM packages I depend on and the order…
Leon
  • 331
  • 2
  • 3
  • 14
8
votes
2 answers

Find the source code for computing size of a docker image

I have heard the number is not equal to all sizes of layers adding together inside an image. And it is also not the size of disk space it occupies. Now I want to check the logic by source code (in this repo: https://github.com/docker/docker-ce),…
Wallace
  • 561
  • 2
  • 21
  • 54
5
votes
3 answers

Ubuntu 18.04 - Error response from daemon: Get https://registry-1.docker.io/v2/: proxyconnect tcp: tls: oversized record received with length 20527

I am having issue with Docker on Ubuntu 18.04 with docker-ce. While pulling a container: $ docker pull nginx or while trying to login $ docker login I get the following message: Error response from daemon: Get https://registry-1.docker.io/v2/: …
Muhammad Shahbaz
  • 319
  • 1
  • 3
  • 10
4
votes
1 answer

Docker installation issue : Failed to mount overlay: no such device storage-driver=overlay2

I am trying to install docker on Ubuntu 20.04.3 LTS. I installing from *.deb packages. While installing docker, it runs into the following error. Failed to mount overlay: no such device storage-driver=overlay2 I created { "storage-driver":…
user3817287
  • 119
  • 1
  • 13
4
votes
2 answers

docker-ce : Depends: containerd.io (>= 1.4.1) but it is not going to be installed

I have an error when trying to install Docker on Debian 10 (Buster) The following packages have unmet dependencies: docker-ce : Depends: containerd.io (>= 1.4.1) but it is not going to be installed E: Unable to correct problems, you have held…
Hugo Sohm
  • 2,872
  • 4
  • 23
  • 40
4
votes
0 answers

Permission when run docker on Centos7

docker: Error response from daemon: OCI runtime create failed: container_linux.go:349: starting container process caused “process_linux.go:449: container init caused \“write /proc/self/attr/keycreate: permission denied\“”:…
4
votes
2 answers

How do I solve "Hash Sum Mismatch" on "apt-get install docker-ce"?

I hope you're all well! This is my first question ever on stack overflow, so if i'm missing anything, just tell me and it'll be my pleasure to update my question. So, to summarize my problem, I am trying to install Docker-ce on an Ubuntu 18.04 VM by…
Tobz
  • 65
  • 1
  • 6
4
votes
1 answer

apt-get error: Version '5:19.03.4~3-0~ubuntu-bionic' for 'docker-ce' was not found

Documentation provides syntax to install specific version of docker-ce: $ sudo apt-get install docker-ce= docker-ce-cli= containerd.io On similar line, below dockerfile uses the above syntax: FROM…
overexchange
  • 15,768
  • 30
  • 152
  • 347
3
votes
2 answers

Docker executing cp or mv command in Dockerfile, but changes does not show up in an image

I am quite new to programming and docker. I did come across such a problem, which I couldn't find an answer to. I created my custom docker image with no problems and then I wanted to use this image as my base for further changes. So I created my…
Marius P
  • 326
  • 1
  • 4
  • 9
3
votes
1 answer

Can't pass environment variables with the docker-compose run -e option

I'm trying to get the variable from the command line using: sudo docker-compose -f docker-compose-fooname.yml run -e BLABLA=hello someservicename My file looks like this: version: '3' services: someservicename: environment: -…
sab
  • 1,454
  • 1
  • 14
  • 26
3
votes
1 answer

I can't get Docker installed on Debian 8 Jessie

I'm trying to get Docker installed on a machine with Debian 8 (Jessie), but I always seem to run into errors no matter what I try. Using these instructions: https://docs.docker.com/install/linux/docker-ce/debian Checking the kernal: uname…
Larry Xu
  • 43
  • 4
2
votes
0 answers

Mounts denied: \r\nThe path /a/b \r\n is not shared from OS X and is not known to Docker

On mac, /a/b is with below permissions: $ ls -l /a/b total 0 drwxrwxrwx 2 root wheel 64 13 Jan 08:50 b $ whoami user1 $ Below is the docker-compose file to mount /a/b from docker container: version: '2' services: someapp: build: …
overexchange
  • 15,768
  • 30
  • 152
  • 347
2
votes
2 answers

Downgrading Docker from 19.03.2 to 18.09.9 on CentOS 7

I've been trying to downgrade docker from 19.03.2 to 18.09.9 on CentOS 7. I installed it via yum. This is what I've tried so far. Only a single version available returned. $ yum list docker-ce.x86_64 --showduplicates | sort -r * updates:…
d_a
  • 21
  • 1
  • 1
  • 2
2
votes
2 answers

How to enable changes in AWX Containers?

I am trying to install additional python packages in AWX container awx_tasks so that the changes could enable the ansible modules like snow, ec2_elb_facts run (which have pre-requisites as Python modules). I have made the changes in the container…
1
2 3