155,430 questions
0
votes
0
answers
25
views
Neo4j GraphAcademy Docker Installlation Error on Windows: ModuleNotFoundError: No module named neo4j
I'm trying to get a container running Python to connect to my Neo4j container in Docker.
I'm following the steps in the Neo4j GraphAcademy Python Installation tutorial (https://neo4j.com/docs/python-...
-3
votes
0
answers
27
views
Sharing folder with n8n run in container manager/docker on Synology [closed]
Is there a reliable way how to share a Synology folder with a docker container running on the same device? Does the specific image matter in this?
I have created a new user for this service and gave ...
-3
votes
0
answers
24
views
How to access env values defined in a docker container [duplicate]
Introduction
I want to reference the env values defined inside docker container. I want them to be able to them in bash CLI and in bash scripts.
Problem
However, referencing them like $MY_ENV, ${...
-1
votes
1
answer
66
views
Failed Docker build seems to have left a docker image with no name or ID. Only " i Info → U In Use" [closed]
I am seeing the following after running docker image ls
I have tried docker system prune -a as well as,
docker container rm and docker image rm
and I am still seeing the image. I have even removed ...
-4
votes
0
answers
89
views
Docker AI Sandboxes available on Windows 10? [closed]
Docker AI Sandboxes available on Windows 10?
> docker sandbox create claude C:\path\to\project
create/start VM: POST VM create: Post "http://socket/vm": EOF
> docker sandbox run ...
-2
votes
0
answers
50
views
Echo , Golang , Postgresql , Docker Different Results [closed]
I just start learning Golang and I'm currently using Echo.
I have an endpoint :
- base/api/wallet/cardnumber -> get card details
and I execute "go run .\main.go" and the API provide ...
-4
votes
1
answer
67
views
Volumes on Docker Compose [closed]
I have encountered a weird issue. Docker Compose throws an error with the following compose.yaml
$ cat compose.yaml
volumes:
nuc_docker:
name: node-red_docker
external: true
services:
...
Best practices
0
votes
2
replies
32
views
Reduce 'Prisma 7' final bundle size in Docker
In my NodeJS project, we have integrated Prisma(v7.3.0) ORM for MySQL database task(previously sequelize). After all the setup is done, we observed prisma occupies very huge size in Docker image ...
0
votes
0
answers
27
views
Docker fails to pull image from GHCR on AWS EC2: failed to resolve reference / timeout on https://ghcr.io/v2/ [closed]
I’m running Docker on a Linux EC2 instance and Docker is unable to pull images from GitHub Container Registry (GHCR).
When pulling the image, I get the following error:
Error failed to resolve ...
0
votes
1
answer
34
views
Is `skopeo copy` of an image the same as a docker tag in regards of layer caching?
Within a gitlab pipeline, I use skopeo and do:
skopeo copy \
--src-tls-verify=false \
--dest-tls-verify=false
--src-creds $CI_REGISTRY_USER:$CI_REGISTRY_PASSWORD \
--dest-creds $...
0
votes
0
answers
41
views
Rootless Docker cannot be installed just with docker-ce-rootless-extras [closed]
I'm installing Docker in the rootless mode from the scratch. I don't have any docker package installed but docker-ce-rootless-extras. I run dockerd-rootless-setuptool.sh install and got an error
/usr/...
0
votes
2
answers
67
views
Can you execute commands using docker hardened images?
We're investigating switching to using Docker hardened images.
But for simple node app:
FROM dhi.io/node:25.5.0-alpine3.23
RUN npm install
ENTRYPOINT npm run start
It doesn't work:
runc run failed:...
-4
votes
0
answers
46
views
podman vs docker when running systemd inside docker container [closed]
To test my setup and configuration of a bunch of metal servers I wanted to test the setup in isolation with docker containers.
This is my Dockerfile
FROM docker.io/library/debian:11
ARG ...
-2
votes
0
answers
38
views
Getting the repo image digest using only Kubernetes [closed]
I am looking to obtain the repository digest of an image using only Kubernetes. My use case is that I am running my software as a Docker image, and my software is checking for all pods that are ...
-3
votes
0
answers
80
views
Is there an equivalent to “Docker context ls” with the Moby/Docker API in Go? [closed]
To learn Go, I would like to create a personal application for managing Docker objects. I have two Docker contexts on my machine. When starting the program, I would like to be able to choose which ...