User Tools

Site Tools


informatica:linux:docker

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
informatica:linux:docker [2019/10/11 08:33] javiinformatica:linux:docker [2020/02/09 17:11] – [Cambiar politica de reinicio de contenedor] jose
Line 121: Line 121:
  
 ====== Cambiar politica de reinicio de contenedor ====== ====== Cambiar politica de reinicio de contenedor ======
 +https://docs.docker.com/config/containers/start-containers-automatically/
  
-Con el contenedor corriendo:+Miramos que política tiene: 
 +  docker inspect container_name| jq -r '.[0].HostConfig.RestartPolicy' 
 +<code> 
 +
 +  "Name": "always", 
 +  "MaximumRetryCount":
 +
 +</code> 
 + 
 +^Flag^Description^ 
 +|no|Do not automatically restart the container. (the default)| 
 +|on-failure|Restart the container if it exits due to an error, which manifests as a non-zero exit code.| 
 +|always|Always restart the container if it stops. If it is manually stopped, it is restarted only when Docker daemon restarts or the container itself is manually restarted. (See the second bullet listed in restart policy details)| 
 +|unless-stopped|Similar to always, except that when the container is stopped (manually or otherwise), it is not restarted even after Docker daemon restarts.| 
 + 
 + 
 +Para cambiarlo
  
   docker update --restart unless-stopped container_name   docker update --restart unless-stopped container_name
informatica/linux/docker.txt · Last modified: 2023/03/16 10:18 by jose