Skip to main content
Filter by
Sorted by
Tagged with
34 votes
5 answers
14k views

I've been successfully using TestContainers with Docker for quite a while now. All of a sudden today, I started getting this error: UnixSocketClientProviderStrategy: failed with exception ...
Stewart's user avatar
  • 18.8k
7 votes
2 answers
2k views

Apparently the OpenJDK distribution for Java 21 is missing from Docker Hub. What happened? I'm certain OpenJDK 21 images existed in these paths before, as I've checked other successful deployments I ...
pablito's user avatar
  • 67
4 votes
3 answers
341 views

I'm trying to access an Apache Superset dashboard using a guest token, but no matter what configuration I change, Superset always redirects to the login page instead of displaying the embedded ...
Mateus's user avatar
  • 2,608
0 votes
2 answers
108 views

I'm trying to run a software on a big-endian architecture. Following the update at the end of this answer, I tried this: $ docker run --rm --privileged multiarch/qemu-user-static --reset -p yes ...
optical's user avatar
  • 267
1 vote
1 answer
81 views

I can build an image with this Dockerfile that is based on a lightweight Docker image that use Alpine: FROM php:8.4.15-cli-alpine RUN docker-php-ext-install opcache But I can’t build an image after ...
A.L's user avatar
  • 10.6k
1 vote
1 answer
145 views

I have a weird error. I can pull the image to my local computer with the credentials I'm using on Azure and it works fine. I don't think it is a network related issue. However when deploying to Azure ...
Ogglas's user avatar
  • 71.4k
2 votes
2 answers
82 views

Environment Windows 11 23H2 Powershell v5.1 Docker desktop 4.49.0 Issue I have a weird problem when I use variables as arguments for a docker run command inside a Powershell script (.ps1 file). If ...
Damien's user avatar
  • 23
Advice
1 vote
2 replies
56 views

tl;dr Given a docker image that was saved to a local file, e.g. /tmp/my-image.tar, how do I determine the image digest (SHA256 checksum) that will match what docker expects? Given that I save a docker ...
JamesThomasMoon's user avatar
1 vote
1 answer
98 views

I'm running keycloak, next js, and spring boot app using docker compose. Right now I'm having issue in setting up network configurations, usually either I'm getting issuer mismatch in the backend, or ...
Vimal Kumar's user avatar
Tooling
0 votes
4 replies
108 views

I'm trying to build a pre-built dev container (see here). Among others, the app has some Go dependencies specified in go.mod (link to file): module github.com/jovandeginste/workout-tracker/v2 go 1.24....
mu88's user avatar
  • 5,699
-1 votes
1 answer
79 views

I have been working on a project from WSL distribution which used yarn and docker so when I tested the project locally, it took up a lot of space. I already have little space on my disk, so when I ran ...
Elien's user avatar
  • 9
1 vote
1 answer
98 views

So, pytorch requires a rather large bundle of packages. The prebuilt docker pytorch gpu images (https://docs.nvidia.com/deeplearning/frameworks/pytorch-release-notes/running.html) are quite helpful in ...
helt's user avatar
  • 5,337
1 vote
0 answers
85 views

I'm building a Docker image based on node:20-slim with a Python virtual environment. My Dockerfile includes: # Use official Node.js image (stable, small) FROM node:20-slim # Prevent interactive ...
Viraj Shah's user avatar
Best practices
0 votes
4 replies
64 views

this is a beginner's question but after a week of looking around I haven't found an answer, except for a nine-year old posting that doesn't mention named volumes. So I have this dockerfile (more or ...
Volker's user avatar
  • 1,849
2 votes
0 answers
79 views

I am working on a custom deployment of some open source software where some of the code needs to be modified to provide a couple additional features that are not present, so I'm working on making ...
jhyry's user avatar
  • 61
Advice
1 vote
2 replies
68 views

I want to connect to my mongodb running on my localhost machine (dockerhost) from inside a docker container. For that I have to allow connections other than localhost. Unfortunetly when using --...
Benedikt Lechner's user avatar
2 votes
1 answer
50 views

Hoping to get yalls help on the issue I am now sort of desperate about Context: I am deploying a docker container on EC2 Ubuntu, where it is used by two images - one for my Prisma-NestJs-based API and ...
groove_of_course's user avatar
0 votes
1 answer
100 views

After upgrading Docker on my Ubuntu 24.04 Servers to version 29.0.0, Swarm services suddenly inherit: Max open files: soft=1024, hard=524288 MongoDB, Redis, etc. suddenly throw file descriptor errors ...
finisinfinitatis's user avatar
0 votes
0 answers
60 views

Take a (trivial) Dockerfile: FROM scratch COPY *.xyz . I would expect this to include any xyz files if present. So testing with no xyz files - it builds fine locally: % docker build . {...} [+] ...
JackPGreen's user avatar
  • 1,139
1 vote
0 answers
73 views

I have an ASP.NET Core web app that sends signal through can bus on Raspberry Pi. When I run the app throught dotnet run it runs flawlessly. I had to dockerize, and in order to have access to can bus ...
Kamil Chmielewski's user avatar
0 votes
0 answers
51 views

I am trying to build an app using Spring plugin without Dockerfile using docker compose running in Ubuntu. Here is my docker-compose.yml: services: app: image: 'docker.io/my_appName/api:latest' ...
vinx's user avatar
  • 89
1 vote
1 answer
62 views

I pulled this image - rayproject/ray:2.51.0.801bd7-extra-py310 from dockerhub with podman (ray prefers podman internally). On AWS-EC2 then I started a head instance with - Deep Learning Base AMI with ...
Neil Panchal's user avatar
1 vote
1 answer
36 views

I have a NestJS app using Mikro-ORM and PostgreSQL. I’m new to Dockerizing database migrations and Mikro-ORM in NestJS. Locally, when I run: npx mikro-orm migration:create npx mikro-orm migration:up ...
dumpAndDie's user avatar
0 votes
0 answers
51 views

I'm developing a Python project using VSCode Dev Containers. Until now, to build the container I'm developing on, I used the Dockerfile located in the project root, which the same one used for ...
Gino's user avatar
  • 913
1 vote
1 answer
57 views

I am trying to create a container with oracle db to run tests. Due to some restrictions, I have to use rootless podman instead of docker. Here is how I do it: def _container_env_kwargs() -> dict: ...
Muslimbek Abduganiev's user avatar