1,223 questions
0
votes
1
answer
54
views
How to connect from host machine to a MongoDB Docker container with replica set enabled?
I'm running MongoDB inside Docker with a replica set enabled, and I want to connect to it from my host machine using MongoDB Compass.
Here’s my docker-compose.yml snippet:
services:
mongo:
...
0
votes
1
answer
135
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
38
views
FFmpeg container is unable to communicate to my application container in Quarkus [duplicate]
I'm working on a application where i am running different container such as clamav,postgres,my quarkus application.all the configuration is defined in docker compose file.now i want to perform some ...
0
votes
0
answers
418
views
Railway CLI Deployment in GitHub Actions Failing with "Project Token not found"
I'm trying to deploy a Django backend to Railway using GitHub Actions, but encountering "Project Token not found" errors with the Railway CLI. I've tried multiple approaches based on Railway'...
-2
votes
1
answer
59
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
78
views
Rebuild kafka Container after each change
I am trying to test Zookeeper to Kraft migration on my machine that later needs to done on dev env. I have created ZK and kafka images using podman and started them. Now one step in the migration is ...
1
vote
0
answers
396
views
context deadline exceeded (Client.Timeout exceeded while awaiting headers)
At the moment I'm building an API on Express.js with ts-node. At first 30 mins - 1 Hour everything works fine, but after a couple of hours I'm starting getting error context deadline exceeded (Client....
0
votes
0
answers
126
views
How can I successfully connect my (MacOS running Android emulator) to my (running) flutter docker container?
I am trying to connect an Android emulator (running on my MacOS) to my linux-based docker container.
Here's my dockerfile:
# Use an official Linux base image (Ubuntu)
FROM cirrusci/flutter:latest
# ...
2
votes
2
answers
160
views
/sys/fs/cgroup/cpu path on host doesn't show the cpu quota value set for docker container
My codebase is using docker cli client (https://github.com/moby/moby/blob/9674540ccff358c3cd84cc2f33c3503e0dab7fb7/daemon/start.go#L17) to run docker container with cpu-period and cpu-quota. The ...
0
votes
1
answer
124
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
1
answer
59
views
CakePHP connect to Google SQL Proxy Container
For starters, I have a docker container running for "cloud-sql-connectors/cloud-sql-proxy:2.14.3" and it has credentials and appears to have started and is running fine.
2025-01-29 12:31:44 ...
-1
votes
1
answer
225
views
Dev Container - Setting up container error
this is the error: https://i.sstatic.net/rEMivHsk.png
I've been trying to set up a container in my project. I am new in creating containers and I don't know much about them. I've searched for a lot of ...
0
votes
0
answers
599
views
Container running on Podman can ping host machine's private network IP address but cannot connect to service listening on that address
I have a fairly simple Dockerfile:
ARG CONTAINER_BASE_IMAGE
FROM ${CONTAINER_BASE_IMAGE}
COPY /buildenv_vars.sh /root/buildenv_vars.sh
RUN touch /root/.profile && cat /root/buildenv_vars.sh &...
0
votes
0
answers
35
views
docker-compose : "container exited with exit code 0" on Raspberry PI
For a student project i need to run a webapp on a Raspberry PI 4B. I have that docker-compose.yml file that creates 3 containers :
web-iot (frontend)
backend (obviously backend)
postgres-db (database)...
0
votes
0
answers
131
views
Logs not getting sent to Datadog when running Django shell inside a container
The logs that are created by the code running inside the container do get sent to Datadog, but when I'm in a shell session inside the container those logs get outputted in the terminal, but not sent ...