Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

docker-compose restart always

; 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.
 
PREVIOUS NEXT
Tagged: #restart
ADD COMMENT
Topic
Name
8+7 =