We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the docker-compose.yml file, the networks setting is as below
networks: localnet: driver: bridge ipam: driver: default config: - subnet: 192.168.10.0/16
The subnet 192.168.10.0/16 is set incorrectly which should be a C-Class subnet of 192.168.10.0/24.
192.168.10.0/16
192.168.10.0/24
This bug leads to the container running via the make command
make localnet-start
error was printed out as below:
invalid subnet 192.168.10.0/16: it should be 192.168.0.0/16
51c8c2a
Just use the make command
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Summary of Bug
In the docker-compose.yml file, the networks setting is as below
The subnet
192.168.10.0/16
is set incorrectly which should be a C-Class subnet of192.168.10.0/24
.This bug leads to the container running via the make command
error was printed out as below:
Version
git log
51c8c2a
Steps to Reproduce
Just use the make command
For Admin Use
The text was updated successfully, but these errors were encountered: