From 24aed564526a913e85aab0fdf1f9a3fa7b4bb8e9 Mon Sep 17 00:00:00 2001 From: Johannes K <26000761+roadrash2108@users.noreply.github.com> Date: Sat, 13 Jun 2020 02:20:46 +0200 Subject: [PATCH] Update upgrading.mdx MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "docker-compose up -d" als Default hinzugefĆ¼gt. --- website/docs/upgrading.mdx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/website/docs/upgrading.mdx b/website/docs/upgrading.mdx index 4a0689e4d3..2c3573fdbc 100644 --- a/website/docs/upgrading.mdx +++ b/website/docs/upgrading.mdx @@ -23,11 +23,14 @@ values={[ ]}> -Pull the new images and restart the stack: +Pull the new images: ```bash docker-compose pull -docker-compose up +``` +and restart the stack with `docker-compose up`. To run the containers in the background add the `-d` flag: +```bash +docker-compose up -d ```