Merge pull request #2822 from spotify/Rugvip-patch-2

Delete docker-compose.yaml
This commit is contained in:
Patrik Oldsberg
2020-10-10 01:43:56 +02:00
committed by GitHub
2 changed files with 0 additions and 23 deletions
-12
View File
@@ -1,12 +0,0 @@
# Make sure that before you
# run the docker-compose that you have run
# $ yarn docker-build
version: '3'
services:
backstage:
image: 'example-backend:latest'
ports:
- '7000:7000'
environment:
NODE_ENV: development
-11
View File
@@ -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
```