Skip to main content
Filter by
Sorted by
Tagged with
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
-2 votes
2 answers
606 views

I am collecting some data for my project. Is it possible to know what is the latest tagged images' version. Without having the image through the api. I want to keep a set of images data, and run ...
fatih's user avatar
  • 1
0 votes
1 answer
2k views

I'm using docker in docker. I ran: docker run --privileged -it docker:dind sh I already found that I must unset DOCKER_HOST env error-during-connect-get-http-docker-2375-ping to use inner docker. But ...
RockyDon's user avatar
  • 125
1 vote
1 answer
90 views

I need to implement the functionality of streaming the docker terminal of a container, for this I used ContainerLogs and collected logs from the container line by line. However, when the container ...
Егор Трухан's user avatar
0 votes
1 answer
124 views

I have a Dockerfile, and when I run docker build from the command line it reuses unchanged layers as expected. However, when I start the build using the Python API, it always rebuilds all steps. Any ...
jdm's user avatar
  • 10.3k
0 votes
1 answer
221 views

chef-clients are unable to run docker cookbook api commands like docker_registry, docker_image and docker_container. The docker cli commands in the recipe are working fine and are able to connect and ...
zane.sa's user avatar
1 vote
1 answer
477 views

I am trying to build a nodejs dashboard to monitor various things including the docker containers that are running on the local system. The dashboard is installed on the server where docker is running....
dartmoordunbar's user avatar
3 votes
1 answer
186 views

I am writing a program in Go to get the total disk usage in GB from my docker host machine. For that, I am using the func DiskUsage() from go lib: https://pkg.go.dev/github.com/docker/docker/client#...
Eduardo Albuquerque's user avatar
0 votes
0 answers
271 views

So I wanted to enable remote docker, to use the API for the daemon from outside the host. My /etc/docker/daemon.json looks like this: { "hosts": ["tcp://0.0.0.0:2375", "unix:...
Joseph Adam's user avatar
0 votes
0 answers
2k views

I am trying to use docker and run my image with this Java Library: com.github.dockerjava Here is the code : import com.github.dockerjava.api.DockerClient; import com.github.dockerjava.api.command....
SanjiSqurt's user avatar
3 votes
0 answers
101 views

I am trying to get the corresponding digest of a docker image with a given tag on a specific date (since the image under the tag might have been overwritten since then), such as getting the digest of ...
smgtkn's user avatar
  • 140
0 votes
0 answers
67 views

i am tried this not working am able list my public repository images but origination images curl -L -s 'https://hub.docker.com/v2/namespaces/devops/repositories/core7/tags?page_size=1024'
sammahi's user avatar
  • 23
0 votes
1 answer
682 views

I'm trying to push an image to a local docker registry deployed with docker-compose the following way: services: docker-registry: image: registry:2 restart: unless-stopped environment: ...
Benjamin Barrois's user avatar
2 votes
1 answer
639 views

I have being reviewing the docker engine SDK documentation related with running Docker with Golang (https://docs.docker.com/engine/api/sdk/) I would like to run a container(which is well documented) ...
Ferrandinand's user avatar
0 votes
1 answer
771 views

I have a Harbor registry containing docker images on AWS s3, what is the path for the manifest file for each image?
smgtkn's user avatar
  • 140
1 vote
0 answers
213 views

On host machine I have docker-compose stack that have a service called transactions-db its a PostgreSQL container I want to create a backup service using Golang to be able to create .sql to be used ...
Moayad Al-sowayegh's user avatar
1 vote
0 answers
113 views

I'm using Go to create a kind of custom client for Docker. It parses a YAML file, creates the containers with some hard-coded options and then creates terminal windows in order to be able to interact ...
Awacate's user avatar
  • 779
0 votes
1 answer
1k views

We have an Artifactory configured as a docker registry and when call is made to https://artifactory/v2/_catalog, the catalog call returns blank, rather then listing docker image repositories. ...
Samir Ma's user avatar
0 votes
0 answers
513 views

I need to list all my containers which are up with docker compose file in windows . this is my code : public void listContainer() { DefaultDockerClientConfig config = ...
Marouen Ghozzi's user avatar
0 votes
0 answers
155 views

I have a spring boot app dockerised named monitormaster I need to connect to another container host to do some manipulation on it like restart , stop , start ... I have problem in docker api with the ...
Marouen Ghozzi's user avatar
0 votes
0 answers
998 views

By following command snippet in https://docs.docker.com/registry/spec/auth/oauth/ as below and set access_type=offline, refresh_token is not present in returned response. curl -iX POST https://auth....
robert's user avatar
  • 427
2 votes
0 answers
338 views

I followed spotify-docker-client user manual and github issues to configure specific memory but i got this error {"message":"Minimum memory limit allowed is 6MB"} i have spring ...
behrooz razzaghi's user avatar
1 vote
2 answers
2k views

I am trying to locally test github actions with the open-source Act utility. "Think globally, act locally" I have copied the git hub repository for which i want to check github action and ...
HARSHAL RATHORE's user avatar
0 votes
1 answer
197 views

I am using a C# API that talks to DockerEngine (Docker.DotNet) to do some things, but notably, in this case, removed a stopped container. Here is my code: foreach (var container in RunningContainers) {...
zkatancik's user avatar
1 vote
1 answer
1k views

I am trying to implement an api endpoint for docker stats --one-shot but I simply do not understand the difference between --one-shot and --no-stream. The API documentation is located here but doesn't ...
cdoern's user avatar
  • 97