Questions tagged [docker-daemon]

114 questions
0
votes
1 answer

Failed to pull oracle standard DB image from container-registry.oracle.com

I have installed Docker in my Windows 11 home edition and tried to pull Oracle standard DB image from container-registry.oracle.com. However i got the following error. docker login container-registry.oracle.com Username (XXXX): Password: Error…
0
votes
1 answer

Docker Mac: systemctl enable httpd.service: "This page isn’t working localhost didn’t send any data." after a stop/restart. Requires OS reboot

Running httpd as a service from a container, I am following this example. docker build --rm --no-cache -t my_image . docker run --privileged --name my_website -v /sys/fs/cgroup:/sys/fs/cgroup:ro -p 80:80 -d my_image Dockerfile: FROM…
John Difool
  • 5,572
  • 5
  • 45
  • 80
0
votes
0 answers

Ubuntu 18.04.6 "dockerd: dockerd: cannot execute binary file" Using "su root dockerd""

When i use this in Ubuntu 18.04.6 su root dockerd It returns dockerd: dockerd: cannot execute binary file Please help me.
Liman
  • 11
  • 4
0
votes
1 answer

Rancher Desktop: How to set insecure-repositories on Windows, as set in /etc/docker/daemon.json file

I need to add this for pushing docker images to remote machine. '{ "insecure-registries" : ["10.60.3.4:6000"] }'
0
votes
2 answers

how to fix docker: 'daemon' is not a docker command

my issue's screenshot harivinu01@penguin:~$ sudo dockerd INFO[2022-10-11T11:09:00.045076001+05:30] Starting up failed to start daemon: pid file found, ensure docker is not running or delete /var/run/docker.pid harivinu01@penguin:~$
0
votes
0 answers

Container is not accessible if the user is not logged in

I am using Docker Desktop on a Windows 10 client that is a member of an Active Directory domain. The users on our network want GitLab as a Docker container. The Gitlab container runs on the Win 10 Client without any issues using the following…
Z.J
  • 301
  • 1
  • 7
0
votes
0 answers

Configure Docker as a daemon and run containers

I used dockerd --register-service to register my Docker daemon on windows. Now I want a GitLab container to run when the system is booted (before login). What settings are needed for this? Here is my windows-daemon-option.json: { …
Z.J
  • 301
  • 1
  • 7
0
votes
0 answers

How to pass -H to Docker daemon on systemd?

I am trying to set up Docker on an EC2 server, and I am trying to start it up with the -H flag for the Hosts. What I have: /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock --default-ulimit nofile=32768:65536 What I…
Sean
  • 1,151
  • 3
  • 15
  • 37
0
votes
3 answers

How to insert block at specific line number using ansible

I want to add below docker log rotation specs into daemon.json file using ansible-playbook "log-driver": "json-file", "log-opts": { "max-size": "1m", "max-file": "4" } What if daemon.json is already present on the node which I am applying the…
Ganesh Shinde
  • 65
  • 2
  • 7
0
votes
1 answer

az acr login raises DOCKER_COMMAND_ERROR with message docker daemon not running

Windows 11 with wsl2 ubuntu-22.04. In Windows Terminal I open a PowerShell window and start wsl with command: wsl Then I start the docker daemon in this window with the following command: sudo dockerd It prompts for the admin password, which I…
DeMaki
  • 371
  • 4
  • 15
0
votes
1 answer

How do I grant the paketo builder access permissions to the docker socket when building from a docker image?

When using buildpacks to build my spring boot application on Fedora I get the following error during the execution of the spring-boot-plugin:build-image goal: [INFO] [creator] ERROR: initializing analyzer: getting previous image: Got…
Vringar
  • 502
  • 1
  • 4
  • 14
0
votes
1 answer

How to turn off notifications of docker dashboard?

Well,maybe it seems a ridicilous question but I need some help and think that maybe someone else among approximately 8 billion human on the planet has same issue. Whenever I stop or delete some images or containers on docker dashboard, notification…
abidinberkay
  • 1,857
  • 4
  • 36
  • 68
0
votes
0 answers

Docker bind mount Docker Daemon on WINDOWS

Hello i am following a tutorial on DOCKER. But it is on Linux Environement, actually i use DOCKER on WINDOWS. The purpose is to create an image bind to unix socket with alpine image : docker container run --rm -it -v…
0
votes
1 answer

Sudo gets separate PID when starting a command

I do not understand why sudo gets a separate PID (e.g. 1620) while starting dockerd (e.g. 1628) with sudo? To which PID should I send SIGTERM to stop the dockerd? ps aux | grep dockerd pstree -ps
m19v
  • 1,800
  • 4
  • 11
  • 26
0
votes
0 answers

Cannot connect to the Docker daemon running on remote server with TLS

I am trying to connect to docker daemon running on a remote host (a camera running on a remote location). Steps followed: I have followed the steps in the docker documentation in order to create the certificates needed for this. After this, I have…
s0x
  • 73
  • 1
  • 4