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
This is not allowed:
docker run -it --network host --link db:db --name odoo odoo:12
and this does nothing
docker run -it -e HOST=127.0.0.1 --network host --name odoo odoo:12
How to run this docker with host networking
The text was updated successfully, but these errors were encountered:
I have no idea why you would want to run it via host networking but nonetheless...
You need to point it at your private IP address “192.168.1.x” and you need to include “5432” for the port.
If you create a docker network you can link the DB per the instructions like a normal container deployment.
Sorry, something went wrong.
No branches or pull requests
This is not allowed:
docker run -it --network host --link db:db --name odoo odoo:12
and this does nothing
docker run -it -e HOST=127.0.0.1 --network host --name odoo odoo:12
How to run this docker with host networking
The text was updated successfully, but these errors were encountered: