From b9ddcd3434749e59f333d612f5145da39e0c405e Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Fri, 9 Oct 2020 12:13:20 +0200 Subject: [PATCH] docs/getting-started: remove docker-compose example --- docs/getting-started/deployment-other.md | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/docs/getting-started/deployment-other.md b/docs/getting-started/deployment-other.md index 2cd9708e2a..ab5833b634 100644 --- a/docs/getting-started/deployment-other.md +++ b/docs/getting-started/deployment-other.md @@ -17,14 +17,3 @@ $ docker run --rm -it -p 7000:7000 -e NODE_ENV=development example-backend:lates ``` Then open http://localhost/ on your browser. - -### Running with `docker-compose` - -There is also a `docker-compose.yaml` that you can use to replace the previous -`docker run` command: - -```bash -$ yarn install -$ yarn docker-build -$ docker-compose up -```