1,219 questions
Score of 0
0 answers
125 views
Unable to load unpacked Chrome extension inside Linux container using Puppeteer or CLI
I’m trying to load an unpacked Chrome extension inside a Linux-based Docker container to automate extension testing.
However, the extension does not load — neither when launching Chrome directly via ...
Score of 0
1 answer
116 views
How can I connect from the 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:
...
Score of 0
1 answer
273 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 ...
Score of 1
0 answers
775 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'...
Score of -2
1 answer
85 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 ...
Score of 0
0 answers
99 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 ...
Score of 1
0 answers
614 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....
Score of 2
2 answers
250 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 ...
Score of 0
1 answer
249 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) ...
Score of 1
1 answer
63 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 ...
Score of 0
1 answer
519 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 ...
Score of 0
0 answers
977 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 &...
Score of 0
0 answers
152 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 ...
Score of 0
1 answer
107 views
services.dockeroperator Additional property attach is not allowed Docker Compose
I have below docker-compose.yaml
name: mydemo
volumes:
operator-volume:
driver: local
services:
dockeroperator:
build:
dockerfile: .docker/...
Score of 2
0 answers
345 views
Docker-compose watch sync action doesn't work
I am trying to set up hot-reload in my next.js project. I was following instructions from official docker documentation and it all doesn't seem to work.
Here is my setup for app service:
app:
...