September 17, 20205 yr Is it possible to run a Docker container, that can access and manage another Container? What I want to do is, to check if a container is running, and if not just start it - maybe I don't need another docker for that Edited September 18, 20205 yr by Jaster
September 17, 20205 yr You'd probably need to use a user script... such as if [ "$( docker container inspect -f '{{.State.Status}}' the_docker_name )" == "exited" ]; then docker start the_docker_name Something along those lines...
Archived
This topic is now archived and is closed to further replies.