-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes docker network size to valid for docker compose
Docker compose plugin can't start using these configs because the network 10.20.20.0/16 is invalid and it expects either 10.20.0.0/16 or 10.20.20.0/24. Since we're using only three addresses and change only 4th octet, it's more viable to change the network to /24. Relevant issue: #602
- Loading branch information
1 parent
d0f5a76
commit b28dd99
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,4 +67,4 @@ networks: | |
driver: bridge | ||
ipam: | ||
config: | ||
- subnet: 10.20.20.0/16 | ||
- subnet: 10.20.20.0/24 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,4 +92,4 @@ networks: | |
driver: bridge | ||
ipam: | ||
config: | ||
- subnet: 10.20.20.0/16 | ||
- subnet: 10.20.20.0/24 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -96,4 +96,4 @@ networks: | |
driver: bridge | ||
ipam: | ||
config: | ||
- subnet: 10.20.20.0/16 | ||
- subnet: 10.20.20.0/24 |