; To make a container restart automatically, add this to docker-compose.yml under your service name:
restart: always
; example docker-compose.yml:
services:
website:
image: hello-world:latest
restart: always
; Tip: You MUST use spaces in the .yml file to indent commands, not tabs else you'll get an YAML error.