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
i am getting error when i run the docker build
root@ip-192-168-4-198 devops]# [root@ip-192-168-4-198 devops]# docker build -t testing . Sending build context to Docker daemon 5.852MB Step 1/8 : FROM alpine latest: Pulling from library/alpine Digest: sha256:234cb88d3020898631af0ccbbcca9a66ae7306ecd30c9720690858c1b007d2a0 Status: Downloaded newer image for alpine:latest ---> d4ff818577bc Step 2/8 : LABEL maintainer="Giulio Calzolari [email protected]" org.label-schema.name="Squid" org.label-schema.description="AWS UTM Squid docker image based on Alpine Linux." org.label-schema.schema-version="1.0" ---> Running in a97d0eab5ba6 Removing intermediate container a97d0eab5ba6 ---> f43efc7fd054 Step 3/8 : RUN echo "http://nl.alpinelinux.org/alpine/edge/testing/" >> /etc/apk/repositories && apk add --no-cache --update bash confd squid ---> Running in 0c5650081833 fetch https://dl-cdn.alpinelinux.org/alpine/v3.14/main/x86_64/APKINDEX.tar.gz fetch https://dl-cdn.alpinelinux.org/alpine/v3.14/community/x86_64/APKINDEX.tar.gz fetch http://nl.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz ERROR: unable to select packages: confd (no such package): required by: world[confd] The command '/bin/sh -c echo "http://nl.alpinelinux.org/alpine/edge/testing/" >> /etc/apk/repositories && apk add --no-cache --update bash confd squid' returned a non-zero code: 1
The text was updated successfully, but these errors were encountered:
same problem
Sorry, something went wrong.
yeah ! confd seems to be removed from alpine repos.
confd
it is now required to use the binary installation https://github.com/kelseyhightower/confd/blob/master/docs/installation.md
something like that should work https://github.com/dockage/confd/blob/master/alpine/3.11/Dockerfile
No branches or pull requests
i am getting error when i run the docker build
root@ip-192-168-4-198 devops]#
[root@ip-192-168-4-198 devops]# docker build -t testing .
Sending build context to Docker daemon 5.852MB
Step 1/8 : FROM alpine
latest: Pulling from library/alpine
Digest: sha256:234cb88d3020898631af0ccbbcca9a66ae7306ecd30c9720690858c1b007d2a0
Status: Downloaded newer image for alpine:latest
---> d4ff818577bc
Step 2/8 : LABEL maintainer="Giulio Calzolari [email protected]" org.label-schema.name="Squid" org.label-schema.description="AWS UTM Squid docker image based on Alpine Linux." org.label-schema.schema-version="1.0"
---> Running in a97d0eab5ba6
Removing intermediate container a97d0eab5ba6
---> f43efc7fd054
Step 3/8 : RUN echo "http://nl.alpinelinux.org/alpine/edge/testing/" >> /etc/apk/repositories && apk add --no-cache --update bash confd squid
---> Running in 0c5650081833
fetch https://dl-cdn.alpinelinux.org/alpine/v3.14/main/x86_64/APKINDEX.tar.gz
fetch https://dl-cdn.alpinelinux.org/alpine/v3.14/community/x86_64/APKINDEX.tar.gz
fetch http://nl.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz
ERROR: unable to select packages:
confd (no such package):
required by: world[confd]
The command '/bin/sh -c echo "http://nl.alpinelinux.org/alpine/edge/testing/" >> /etc/apk/repositories && apk add --no-cache --update bash confd squid' returned a non-zero code: 1
The text was updated successfully, but these errors were encountered: