Search code examples
dockerartifactory

Why is jfrog-artifactory-training container always running


I followed the Conan Essentials training from JFrog Academy and since then, when I login on my computer (Linux), this docker container is always running.

How do I prevent this container from running automatically every time I login? If I want it to run, I will start it manually.


Solution

  • After some googling, I found out that one can prevent docker containers from starting automatically with this command:

    docker update --restart no <container_name_or_id>