155,723 questions
0
votes
0
answers
29
views
Failed to unpack image on snapshotter overlayfs: unexpected media type text/html
When I use the command docker pull xximage, I get the error
Error response from daemon: failed to unpack image on snapshotter
overlayfs: unexpected media type text/html for
sha256:...
1
vote
0
answers
39
views
Install a Python package from a GitHub repository on Docker GUI or command line
I am trying to use Docker Desktop to create a container where I can install a Python package that I retrieve from a GitHub repository.
I was trying to do that by going on the Exec tab of the Docker ...
2
votes
0
answers
39
views
Why am I experiencing DNS resolution failures only in the final stage of a multi-stage Docker Compose build?
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 ...
0
votes
0
answers
13
views
Harbor returning HTTP redirect behind Kong despite X-Forwarded-Proto: https [duplicate]
I have shared my setup details here : Harbor docker push issue (not able to reopen it for some reason)
this is how the setup looks : Client → LB (SSL terminates here) → nginx ingress (HTTP) → Kong (...
0
votes
1
answer
57
views
Harbor docker push issue [closed]
I’m facing an issue while trying to push images to Harbor deployed on linode Kubernetes engine. Requesting some help
Here’s my setup:
Harbor version: 2.14.0
Helm chart version: harbor-1.18.0
SSL ...
-1
votes
1
answer
52
views
Cannot access /var/run/docker.sock within container: Permission Denied [closed]
I am tyring to access a /var/run/docker.sock from within a container (to be able to run a container-that-monitors-other-containers, like beszel/dockpeek).
I think I have everything just right, but ...
1
vote
1
answer
31
views
frontend-maven-plugin yarn:build Process exited with an error: 1
When trying to build in jenkins, running inside a docker container, yarn build fails with:
21:49:00 [ERROR] Failed to execute goal com.github.eirslett:frontend-maven-plugin:1.9.1:yarn (yarn build) on ...
1
vote
0
answers
22
views
How to deploy monorepo Dockerfile to Digital Ocean App Platform
I'm attempting to configure a two-component (frontend + backend) monorepo deployment using Digital Ocean's App Platform. I'm starting with the backend. The monorepo looks like:
client/ <-- NextJS ...
Tooling
0
votes
2
replies
67
views
Cache Go dependencies in dev container
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....
Tooling
0
votes
0
replies
35
views
Reuse "node_modules" from pre-built dev container
I'm trying to build a pre-built dev container (see here).
Among others, the app uses some Node.js packages. To speed up the dev container performance, I'd like to cache them. For this, I'm running npm ...
-3
votes
1
answer
43
views
Spring Boot container can't connect to MySQL container in same Docker Compose network (Hostinger VPS) [duplicate]
I’m running Spring Boot, React, and MySQL inside Docker on a Hostinger VPS (Ubuntu 22.04) using the following docker-compose.yml:
version: '3.8'
services:
mysql:
image: mysql:8
...
-3
votes
0
answers
32
views
When using docker node:alpine build node_modules installs in /usr/local/lib
Why was /usr/local/lib the defaut local packages destination directory in NodeJS docker image ?
FROM node:24-alpine
WORKDIR app/
COPY package.json yarn.lock ./
RUN corepack enable \
&& ...
0
votes
0
answers
29
views
pgadmin fails to create SSH tunnel since version 9.9 [closed]
I am using the docker version of pgadmin.
Since version 9.9, I can no more login to any of my remote PG servers using the SSH tunnel tab in the server properties (it was perfectly working in pgadmin ...
0
votes
0
answers
27
views
Failed to deploy puppeteer chromium in Render
I used puppeteer in my Node.js project and wanted to deploy it to Render as Docker image but the puppeteer chromium browser fails to launch in Render and gives me the error trace below. The app runs ...
1
vote
0
answers
60
views
ASP.NET Core app in docker container not accessible
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 ...