D
Dokploy3mo ago
_ɯɐs_

should i restart my server ?

When i access my vps with ssh i have this message that tells my that i sould restart my vps. If i do it all my docker container will restart when the server restart ?
No description
1 Reply
Henrik
Henrik3mo ago
It sometimes have important security patches which cannot be fixed on a running kernel and will only take effect after a reboot. All docker container will restart if they are marked with:
services:
web:
image: blabla
restart: unless-stopped #or always
services:
web:
image: blabla
restart: unless-stopped #or always
Databases and applications which are not compose projects will restart after reboot.

Did you find this page helpful?