1,090 questions
0 votes
1 answer
43 views
MongoTimeoutException in Testcontainers Integration Test : Open Liberty app attempts to connect to Kubernetes FQDNs instead of local alias
Title - MongoTimeoutException in Testcontainers Integration Test : Open Liberty app attempts to connect to Kubernetes FQDNs instead of local alias I am writing integration tests for an Open Liberty-...
0 votes
0 answers
106 views
Azure Search Python SDK SSL Certificate Verification Failed in Open web ui (Docker) - Works in Windows Jupyter
Problem: I'm querying Azure AI Search from Open WebUI (Docker on WSL Ubuntu 24). The azure-search-documents SDK fails with SSL certificate verification errors, but the same code works fine in Windows ...
0 votes
1 answer
167 views
How to run Docker containers on a bonded interface (bond0) using a bridge network? [closed]
I’m trying to make my Docker containers use a bonded interface (bond0) for fault tolerance, instead of binding directly to a single network adapter. The bonded interface is successfully created with ...
0 votes
0 answers
39 views
How to run docker container so that I can talk to it from host and another container [duplicate]
I would like to use the same connection string to a database running in container in both, host machine and other containers. Scenario I have a dockerized app, with external dependency to DB DB is ...
0 votes
0 answers
46 views
Docker Daemon getting unresponsive after running for more than 1 hour
Please guide. Thanks in advance We are running an application on docker with multiple containers with the help of a docker compose file. Azure Ad is configured for authentication. The url is exposed ...
-1 votes
1 answer
51 views
Confine networking of global mode docker services to each host
Is there a way to make two "global" mode docker swarm services communicate directly, on the same host? In this docker swarm stack are two global services, promtail and prometheus. # stack....
-2 votes
1 answer
68 views
Volume mysql-data keeps getting recreated automatically in Docker Compose
I'm facing a strange behavior with Docker Compose and a MySQL container. Even after I run docker-compose down to stop and remove the container and network, the volume seems to be automatically ...
0 votes
0 answers
111 views
How to Resolve Docker Domain Access Errors Without Manually Updating /etc/hosts?
Every time my Docker accesses a domain, even for performing Docker Login, it throws an error: Error response from daemon: Get "https://registry-1.docker.io/v2/": dial tcp: lookup registry-1....
1 vote
1 answer
77 views
Docker connection between Kafka and Bytewax refused
I want to consume a stream from Kafka using Bytewax to perform aggregations. Unfortunately I'm not able to connect to Kafka and the connection is always refused. I assume something with the port setup ...
0 votes
0 answers
19 views
Failed communication between Nextjs and internal docker services inside a docker network [duplicate]
I am building a password manager app. Here I am using Next JS as frontend and Django as backend framework. I am deploying the whole thing using docker. There are three services frontend, backend and ...
0 votes
0 answers
144 views
Docker Compose networking issue after upgrading from Fedora 40 to Fedora 41
This used to work great, but now I'm seeing a lot of HTTP request failed: [400:BadRequest] errors from prowlarr trying to communicate with radarr (and same for sonarr). I recently upgraded from ...
0 votes
1 answer
388 views
Make docker containers inside a network accessible externally
So, my situation: 2 docker containers: postgres and a server. I want to run them in a way, that: prevents external access to postgres allows server to access postgres allows external access to server ...
0 votes
1 answer
158 views
Docker Swarm Overlay Network: Services Can Ping Each Other but TCP Connections Fail [duplicate]
I am running a Docker Swarm cluster with two nodes: Manager Node (10.1.109.70) Worker Node (10.1.109.60) I created an overlay network (my-swarm-net) and deployed multiple services (MySQL and Nginx) ...
1 vote
0 answers
75 views
`ping` Fails Inside HAProxy Docker Container
# Dockerfile FROM haproxy:2.6-bullseye USER root RUN apt update && apt install -y iputils-ping iptables COPY test.cfg /usr/local/etc/haproxy/haproxy.cfg ENTRYPOINT ["ping", "8.8....
0 votes
1 answer
207 views
Docker Multi-Network Route Issue
For my typical usage, I need to create a container over 2 docker networks: Pre-Info Let's redefine something to make this clearer: The concerned container: workload_container The Physical Machine LAN ...