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
When calling ufw-docker status I get the following output:
ufw-docker status
grep: warning: stray \ before / grep: warning: stray \ before /
This is on Arch with ufw-docker-git from the AUR and grep version 3.11.
The text was updated successfully, but these errors were encountered:
Hi! I used artificial intelligence ( duck.ai ). Here's what he advised me. Find the lines in the ufw-docker file that you downloaded (installed):
ufw status numbered | grep "# allow ${INSTANCE_NAME}\\( ${INSTANCE_PORT}\\/${PROTO}\\)\\( ${NETWORK}\\)\$" || \ ufw status numbered | grep "# allow ${INSTANCE_NAME}\\( ${INSTANCE_PORT}\\/${PROTO}\\)\$" || \ ufw status numbered | grep "# allow ${INSTANCE_NAME}\$"
fix them so that it looks like this:
ufw status numbered | grep "# allow ${INSTANCE_NAME}(${INSTANCE_PORT}/${PROTO})(${NETWORK})$" || \ ufw status numbered | grep "# allow ${INSTANCE_NAME}(${INSTANCE_PORT}/${PROTO})$" || \ ufw status numbered | grep "# allow ${INSTANCE_NAME}$"
This error does not appear after this edit.
Sorry, something went wrong.
No branches or pull requests
When calling
ufw-docker status
I get the following output:This is on Arch with ufw-docker-git from the AUR and grep version 3.11.
The text was updated successfully, but these errors were encountered: