From 11608ecb55f3bf06c0bef456b0596b0ec31579b5 Mon Sep 17 00:00:00 2001 From: Joshua Schlichting <7680545+JoshuaSchlichting@users.noreply.github.com> Date: Sun, 7 Mar 2021 10:31:58 -0500 Subject: [PATCH] Fixed networking.md malformed whitespace Adjusted what appeared to be malformed yaml whitespace in the 'Specify custom networks' section --- compose/networking.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/compose/networking.md b/compose/networking.md index 06ec01bff0..8f7caeb6c0 100644 --- a/compose/networking.md +++ b/compose/networking.md @@ -111,19 +111,19 @@ Here's an example Compose file defining two custom networks. The `proxy` service version: "{{ site.compose_file_v3 }}" services: - proxy: + proxy: build: ./proxy - networks: - - frontend - app: - build: ./app - networks: - - frontend - - backend - db: - image: postgres - networks: - - backend + networks: + - frontend + app: + build: ./app + networks: + - frontend + - backend + db: + image: postgres + networks: + - backend networks: frontend: