You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#18 still is an issue as DNS lookup still seems to be broken in the uclib version of upstream (see below). As the Prometheus images are based on prom/busybox:latest they are based on the broken uclib version of upstream as well, causing issues with service discovery in docker compose setups. Is there any chance you could switch to the glibc version for :latest instead of uclib?
docker-compose.yml:
version: "3.8"
services:
one:
image: quay.io/prometheus/busybox:latest
networks:
- test-net
entrypoint: sh
command:
- -c
- while sleep 2; do nslookup two; echo XXXXXXXXXXXXX; done
two:
image: quay.io/prometheus/busybox:glibc
networks:
- test-net
entrypoint: sh
command:
- -c
- while sleep 2; do nslookup one; echo XXXXXXXXXXXXX; done
networks:
test-net:
Hi there,
#18 still is an issue as DNS lookup still seems to be broken in the uclib version of upstream (see below). As the Prometheus images are based on prom/busybox:latest they are based on the broken uclib version of upstream as well, causing issues with service discovery in docker compose setups. Is there any chance you could switch to the glibc version for :latest instead of uclib?
docker-compose.yml:
Sample output:
The text was updated successfully, but these errors were encountered: