Your cart is currently empty!
Docker: Restart Policy
| Flag | Stopped from inside container with “service xxx stop” (exit 0) | Stoped from outside container with “docker kill xxx” (exit 137) |
|---|---|---|
| no | stopped, stopped after daemon restart | stopped, stopped after daemon restart |
| on-failure | stopped, stopped after daemon restart | stopped, started after daemon restart |
| unless-stopped | restarted, started after daemon restart | stopped, stopped after daemon restart |
| always | restarted, started after daemon restart | stopped, started after daemon restart |

Leave a Reply