Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

555
Views
Restart a docker container from another running container

I am using docker-compose for deployment. I want to restart my "centos-1" container from "centos-2" container. Both containers are running on the same host. Please suggest, How could I achieve this in a simplest and automated way?

I followed How to run shell script on host from docker container? and tried to run a script on Host from "centos-2" container, but the script is executing inside a container and not on the host.

Script:

    #!/bin/bash
    sudo docker container restart centos-1

Error:

    line 2: docker: command not found

(Docker isn't installed inside any centos-2 container)

over 4 years ago · Santiago Trujillo
2 answers
Answer question

0

You need:

  1. Install docker CLI (command line interface) on second container. Do not confuse with full scale installation - you dont need docker daemon, only command line tool (docker executable)

  2. Share you host's docker daemon (service) to make it accessible in second container. That is achieved with simply sharing /var/run/docker.sock when launching 2nd container, example:

    docker run ... -v "/var/run/docker.sock:/var/run/docker.sock" container2 ...
    
  3. Now you can execute any docker command, like docker stop from second container and these commands are happily passed to your main (and the only) docker daemon.

over 4 years ago · Santiago Trujillo Report

0

There is a approach from the CI-context to control the Docker Daemon on System from a running container called Docker-out-of-Docker (DooD):

  1. you have to install docker inside your container
  2. Map you docker installation from your system inside your container using volumes
  -v /var/run/docker.sock:/var/run/docker.sock

Now each docker command inside your container are execute on the system docker installation. E.g. if you type docker image list inside your container there should be the same list as if your type the command on your system.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!