Containers not restarted after update with restart always in docker-compose.yml
问题 I have some containers which all of them have the always restart value in the docker-compose file like this: version: "3.7" services: container: image: ghost:latest container_name: some_container restart: always depends_on: - ... ports: - ... ... As soon as the OS (Flatcar Linux / CoreOS) has updated itself none of the containers restart. But if I just do $ sudo docker ps all of the containers starts at once. Whats up with that and how do I fix it so my containers automatically restarts after