1
0
Fork 0
mirror of https://github.com/docker/awesome-compose.git synced 2025-04-20 07:48:06 +02:00

added missing depends_on, corrected indentation

...to match what is in compose file

Signed-off-by: Charlie Arehart <charlie@carehart.org>
This commit is contained in:
Charlie Arehart 2020-04-07 20:58:49 -05:00
parent b3bff950ce
commit 529115a0e7

View file

@ -21,7 +21,9 @@ services:
frontend:
build: frontend
ports:
- 80:80
- 80:80
depends_on:
- backend
backend:
build: backend
```