This message was deleted.
# support
s
This message was deleted.
o
Any idea for how to solve this?
s
What are the logs from the exited containers?
o
where can I find those?
s
Container logs
o
Any specific container I should check logs for?
Taking alertmanager as an example, it only has a single log from computer restart.
Copy code
level=info ts=2023-12-08T14:59:11.870Z caller=main.go:626 msg="Received SIGTERM, exiting gracefully..."
Its like its not configured to auto start all containers.
s
Yes, the auto restart is not enabled
o
I found out that all containers was configued as restart on-failure. This seem to cause them not to correctly start on reboot. Running this command to change all to unless-stopped seems to have solved my issue:
Copy code
docker update --restart unless-stopped $(docker ps --all -q)