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
actions still not pulling latest built image from termux-user-repoistory/termux-docker so dns resolution is failing
Originally posted by @Kapral67 in #863 (comment)
We might be able to fix with something like:
index cad11a0..d3e4cb4 100755 --- a/common-files/build-termux-docker.sh +++ b/common-files/build-termux-docker.sh @@ -23,7 +23,8 @@ fi echo "Running container '$CONTAINER_NAME' from image '$TERMUX_BUILDER_IMAGE_NAME'..." $SUDO docker start $CONTAINER_NAME >/dev/null 2>&1 || { - echo "Creating new container..." + $SUDO docker pull $TERMUX_BUILDER_IMAGE_NAME + echo "Creating new container..." $SUDO docker run \ --detach \ --name $CONTAINER_NAME \
but I have no way to test as I only have the latest image
The text was updated successfully, but these errors were encountered:
The latest image has been pulled. Removing --network=host should resolve this.
--network=host
Sorry, something went wrong.
On my local computer, the container has dns resolution with --network=host set. Is this issue something specific to the github actions environment?
Should be fixed by 3544d92
that did it, ty
No branches or pull requests
actions still not pulling latest built image from termux-user-repoistory/termux-docker so dns resolution is failing
Originally posted by @Kapral67 in #863 (comment)
We might be able to fix with something like:
but I have no way to test as I only have the latest image
The text was updated successfully, but these errors were encountered: