From 457f2474e79966810a6376fda7e8df0f96d19978 Mon Sep 17 00:00:00 2001 From: Me in Slovak Date: Tue, 24 Aug 2021 12:50:57 +0200 Subject: [PATCH] Hotfix *Docker: Fix Typo Signed-off-by: Me in Slovak --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a78a9ff..0c8db7e 100644 --- a/README.md +++ b/README.md @@ -139,6 +139,6 @@ You can build a production image by running `docker build .` in the repo's root. For development, there's a `docker-compose.yml` that mounts the app code (for hot reload of code changes) and default config. Before running it, you need to install the dependencies: ``` -$ docker compose run --rm web npm install --no-optionals -$ docker compose up +$ docker-compose run --rm web npm install --no-optionals +$ docker-compose up ```