Fixed networking.md malformed whitespace

Adjusted what appeared to be malformed yaml whitespace in the 'Specify custom networks' section
This commit is contained in:
Joshua Schlichting 2021-03-07 10:31:58 -05:00 committed by GitHub
parent a81a990528
commit 11608ecb55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 12 deletions

View File

@ -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: