155,203 questions
0
votes
0
answers
47
views
XDebug in Docker Over WSL
I am trying to achieve what I'd hoped would be a fairly standard setup:
PhpStorm running on Windows, opening a project on WSL2
Docker CE running in WSL2, with its Networking Mode set to Mirrored
...
0
votes
2
answers
72
views
Cannot add NuGet Source in Dockerfile
I am currently in the progress of setting up a TeamCity Server using docker.
My current issue is, that my builds require NuGet Packages that are produced by other builds of the same server. For this I ...
Advice
0
votes
1
replies
56
views
How can I create a .yml file and create containers from DockerHub images like nginx, wordpress and mysql?
I have to create a docker-compose.yml file. I'm a begginer with docker, so i don't know some simple stuffs. But, the final goal is to create a Multi-container application and the nginx server have to ...
Advice
0
votes
3
replies
53
views
Installing Private Package in Docker Container Using .npmrc With Environment Variable
Question: How to install a private NPM package in a Docker container using .npmrc that contains an environment variable for an access token?
I've been struggling for two days without much luck. (My ...
Best practices
0
votes
1
replies
71
views
Docker Project: A to Z process step by step
Would you recommend any free complete project has been created using docker which I can practice to learn in detail? I looked various sources but found limited resources like half or magnetic part of ...
-2
votes
2
answers
97
views
Why can two Docker containers ping each other by name but one cannot make HTTP requests to the other? [closed]
I have two Docker containers running on the same custom bridge network. They can resolve each other's hostnames and ping works fine, but when I try to make an HTTP request from one container to the ...
Best practices
0
votes
1
replies
50
views
How should Dockerfiles and Docker Compose configurations be managed for development and production environments in Docker?
I’m learning Docker, but there are some things that are confusing me. For example, I’ll be using Laravel. The plugins, configurations, etc., used in Laravel’s development and production environments ...
-3
votes
0
answers
46
views
Run 2 or more commands at container start up [closed]
I'm using containers for development purpose,
My idea is build my container image with the standard platform (it is a eCommerce web application), add a few config files and as last command of the ...
1
vote
1
answer
30
views
gitlab-runner is not installed in a docker container. OS debian 12 [closed]
gitlab-runner is not installed in a docker container. OS Debian 12
I am writing the following:
curl -fsSL https://get.docker.com | sh
docker volume create runner01
docker pull gitlab/gitlab-runner:...
0
votes
1
answer
90
views
Docker login fails with "error storing credentials... The stub received bad data" on Ubuntu WSL2 with Docker Desktop
Problem
I'm using Docker Desktop with WSL2 integration on Windows.
When I run
docker login <registry> -u <user> -p <password>
I get the following error:
error storing credentials: ...
0
votes
0
answers
41
views
OSError when running containerized task in `airflow` image
I'm trying to run a simple task in the apache/airflow image with the following Python script:
from airflow.sdk import dag, task
@task.docker(
image="docker.1ms.run/apache/airflow:3.2.0-...
-1
votes
0
answers
39
views
Prisma client not generated during Go build in deployment environment (Choreo)
I am building a Go backend using Prisma (prisma-client-go)
Locally, everything works fine because I run the following command manually:
PRISMA_CLIENT_GO_BINARIES_ALL=true go run
github.com/steebchen/...
0
votes
1
answer
47
views
flutter doctor timeout in docker vscode devcontainer
I'm trying to setup a docker devcontainer in VSCode for Flutter Linux desktop development. The target is ubuntu 26.04. Both Flutter and Docker Devcontainers are new to me. I've been reading the online ...
Best practices
0
votes
4
replies
80
views
Memory settings for running Maven Builds within Docker
TL;DR: What are the best practices for running Maven builds within containers regarding memory limits?
Longer version:
Our build process utilizes Maven builds within Docker containers. For the sake of ...
2
votes
1
answer
104
views
Multiple workers using the same log file
I have a FastAPI service which is using granian with 6 workers. I noticed that I'm losing information from logs, there are requests being made, however the rotated logs are missing records for these ...