From 60465981791a43b50a680f8aabdb9615d595f948 Mon Sep 17 00:00:00 2001 From: Scott Lamb Date: Tue, 13 Jul 2021 11:23:41 -0700 Subject: [PATCH] use "unless-stopped" rather than "on-failure" The latter doesn't restart the docker container on system startup. --- guide/install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/install.md b/guide/install.md index c57a5ef..5bbfc18 100644 --- a/guide/install.md +++ b/guide/install.md @@ -61,7 +61,7 @@ run) shift exec docker run \ --detach=true \ - --restart=on-failure \ + --restart=unless-stopped \ "${common_docker_run_args[@]}" \ --network=host \ --name="${container_name}" \