Merge pull request #12456 from JoshuaSchlichting/patch-1

Fixed networking.md malformed whitespace
This commit is contained in:
Usha Mandya 2021-03-09 14:39:05 +00:00 committed by GitHub
commit f839daebff
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: