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
Getting following warning while running ee shell on a PHP site:
WARNING: Some networks were defined but are not used by any service: global-backend-network
This is occurring because a PHP site without DB or cache has global backend network in it's docker-compose.yml, but it's not used.
docker-compose.yml
So to fix this issue, we need to add global backend network in docker-compose.yml only when --cache or --with-db flag is passed.
--cache
--with-db
The text was updated successfully, but these errors were encountered:
ee shell
PiyushKhurana
Successfully merging a pull request may close this issue.
Getting following warning while running ee shell on a PHP site:
This is occurring because a PHP site without DB or cache has global backend network in it's
docker-compose.yml
, but it's not used.So to fix this issue, we need to add global backend network in
docker-compose.yml
only when--cache
or--with-db
flag is passed.The text was updated successfully, but these errors were encountered: