Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
62 views

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 ...
Sandip D's user avatar
  • 121
0 votes
1 answer
76 views

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: ...
Steeven Delucis's user avatar
0 votes
1 answer
168 views

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 ...
Mohamed Mourad's user avatar
0 votes
0 answers
44 views

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 ...
Abhi11's user avatar
  • 1
0 votes
0 answers
548 views

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'...
Ha Xiao's user avatar
  • 11
-2 votes
1 answer
68 views

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 ...
user30303110's user avatar
0 votes
0 answers
87 views

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 ...
BloodFury's user avatar
1 vote
0 answers
416 views

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....
slsforme's user avatar
0 votes
0 answers
133 views

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 # ...
Josh's user avatar
  • 23
2 votes
2 answers
191 views

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 ...
Varun's user avatar
  • 4,294
0 votes
1 answer
159 views

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) ...
mohamedyahya messaoud's user avatar
1 vote
1 answer
61 views

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 ...
Me JW Crouch's user avatar
-1 votes
1 answer
268 views

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 ...
hypno's user avatar
  • 1
0 votes
0 answers
673 views

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 &...
Nick Williams's user avatar
0 votes
0 answers
42 views

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)...
WiTech's user avatar
  • 3
0 votes
0 answers
135 views

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 ...
Fredy's user avatar
  • 2,073
0 votes
0 answers
65 views

I'm a complete docker beginner. I'm trying to set up a media server using docker. I have: A Terramaster NAS (NFS sharing from this, from /mnt/md0/Entertainment, nfs4) A raspberrypi acting as the ...
vika09's user avatar
  • 1
0 votes
1 answer
75 views

I have below docker-compose.yaml name: mydemo volumes: operator-volume: driver: local services: dockeroperator: build: dockerfile: .docker/...
Saurav K's user avatar
2 votes
0 answers
310 views

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: ...
smallCoder's user avatar
0 votes
0 answers
122 views

I'm learning Docker and my project have such docker config as follows: When I run following command in terminal docker-compose build && docker compose up It's creating Docker image & run ...
ArtBindu's user avatar
  • 2,038
0 votes
1 answer
129 views

I have the following issue, I have a Dokcerfile that containerizes a Vue app, when I try using `docker-compose`, the app won't start, but when I do it manually (with docker commands, it works), can ...
Rami Hassan's user avatar
1 vote
1 answer
293 views

I've got a nextjs container that runs fine until I try to run it in host networking mode. Here's the command I run: docker run --net=host --name myapp_ui myimage_ui This is the I get when it tries to ...
LoneWolfPR's user avatar
  • 4,121
0 votes
0 answers
167 views

I am using dockerode to capture logs from a running container. However, the log stream contains unexpected control characters. For example, I'm running C++ code to display "Believe," but I ...
abhishek_maran's user avatar
0 votes
0 answers
160 views

I'm currently building an app that connects to an API server through a script. Here’s how I create posts by connecting to the API server: api_url = "http://localhost:8013/posts/" ...
xler's user avatar
  • 1
0 votes
1 answer
63 views

Here's an explanation of what I am doing in steps: Start a mongo container using the command docker run -p 27017:27017 -d mongo After that I start a connection in MongoDB compass using the connection ...
RM14's user avatar
  • 23
0 votes
1 answer
683 views

Introduction I've got two multi-tiered web applications running in docker containers that I'm trying to start using docker compose rather than docker run. I hope the diagram below conveys the setup ...
CraigFoote's user avatar
0 votes
0 answers
45 views

For work I was asked to run cronjobs in a Docker container. These are jobs that will be run on a server related to work. The actual cron script I am currently running in this container consists of ...
Muzhdah-W's user avatar
0 votes
1 answer
193 views

I have deployed the same (no code change) Node.js application in both Docker containers and Azure Container Apps. I've noticed a discrepancy in memory usage between the two environments. In Azure ...
Amrish 's user avatar
0 votes
0 answers
78 views

I am working on a python project and I need to create a docker image for testing. The folder structure of my project is currently the following |--main.py |--parcellation_env.yml |--module |----...
Neskelogth's user avatar
-2 votes
1 answer
217 views

I have a run config1 like so docker run \ --name webapp_postgres \ -e POSTGRES_PASSWORD='abc123' \ -e POSTGRES_DB="webapp" \ -p5432:5432 \ -d postgres and config2 like so docker run \ --...
9 Guy's user avatar
  • 358
-4 votes
1 answer
86 views

Im new to docker so I apologize if that sounds silly. Im running a web application in docker container. The application starts a jitty webserver . If I assign localhost or the FQDN machine name Im ...
samsal77's user avatar
  • 779
0 votes
1 answer
53 views

I have a docker-compose file: services: artemis: image: <artemis-image> ports: - "8161:8161" - "61616:61616" environment: ...
AbrA's user avatar
  • 480
0 votes
1 answer
205 views

setting up a web development stack with NGinX, PHP and composer. My docker file looks like this: FROM php:fpm # Install dependencies and PHP extensions RUN apt-get update && apt-get upgrade -...
PHP Addict's user avatar
0 votes
1 answer
30 views

I have a basic Django project that I have put into a docker container. Currently I have it running on https locally just for the development phase because it is a requirement. When I run my program ...
user124e's user avatar
-5 votes
1 answer
88 views

I am using a docker container, that dies after the function it has to perform has been finished. I want to know is there a way to know the progress of the docker container, like how much has it been ...
Ishan Shah's user avatar
1 vote
0 answers
590 views

I'm new to docker and prefect and trying to run a basic prefect flows with docker container from my local windows. Here is my Docker file # We're using the latest version of Prefect with Python 3.10 ...
user25982998's user avatar
0 votes
1 answer
295 views

I am developing an application on Visual Studio 2022, using docker container. I am using CMakePreset to configure the system and I can open the container successfully and execute and debug the ...
Roberto Ciardi's user avatar
0 votes
0 answers
128 views

I have a container running Spark on port 7077 and got the container IP Address through the Docker inspect command, I'm trying to create a SparkSession through my host machine (I'm using Jupyter on my ...
anpan A's user avatar
0 votes
0 answers
71 views

I am using a spring cloud config server to externalize the configuration properties for my project For this purpose I have created these microservices configserver accounts cards loans Rabbit Mq ...
Anshu's user avatar
  • 41
3 votes
0 answers
836 views

I am trying to run mysql 8.0 image on m1 mac using docker-compose I was able to do it till few months ago, but now i am getting an error and i can't I am using m1 macbook (ventura) First, I ran docker ...
RomeoHY's user avatar
  • 59
0 votes
1 answer
140 views

I'm having a Windows 10 host with Hyper-V Linux VM having IOT EdgeAgent and EdgeHub modules installed. I have provided storageFolder mount to EdgeAgent & Hub to store offline files at var/iotedge/...
user25065003's user avatar
0 votes
1 answer
56 views

I have a laptop running Ubuntu 22.04, and a desktop computer running Ubuntu 24.04, within the same LAN. I would like to be able to attach a docker container running on the desktop, from the laptop. ...
Daniel Rossi's user avatar
7 votes
4 answers
31k views

I have build a scraper using Puppeteer and Node.js and now i want to dockerize it. I've tried multiple ways to tackle this, but encountering issue when puppeteer tries to start the browser for ...
Parv's user avatar
  • 419
1 vote
3 answers
8k views

I have pulled the jupyter/datascience-notebook:latest image from docker hub and launched an instance container of it. I logged into the container through bash. Now i want to restart the server itself ...
Moctar Diallo's user avatar
0 votes
1 answer
142 views

I want to copy the files generated inside a docker container, to the local storage before stopping/killing the container. I am creating an docker image. I am using docker run --name <...
Andrei Cezar's user avatar
0 votes
0 answers
866 views

I'm trying to use CUDA and tensorflow on Docker on Ubuntu. My machine has a GPU (GeForce GTX 1070) and of course I'd like to use it through Docker. Ubuntu(Ubuntu 22.04.3 LTS) was newly installed the ...
hopstepforward's user avatar
1 vote
1 answer
624 views

When running my .net core 6 mvc app in linux (debian 11) container getting below error after certain successive calls to same controller action. This action readd the http response body and perform ...
Tathagata Nandi's user avatar
0 votes
1 answer
198 views

I'm trying to install my application using a Windows container. The installation copies the files that are needed and runs a Windows service as a local system when the installer finishes copying the ...
Yana R.'s user avatar
  • 31
0 votes
0 answers
37 views

I am trying to put a spring consumer application to docker. This application listens to a queue (apache mq) and processes the message. It has an existing logic: If(msg.isRedelivered)    Do ...
hsuyip_coder's user avatar
1 vote
0 answers
526 views

When setting up a container through docker compose, I can push to an empty repo over port 22, but I can't seem to customize gitlab to use a port of my choice. This is a snippet of my docker compose, ...
A_Weierstrass's user avatar

1
2 3 4 5
25