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'
I am using testconatiners to start a container on a Jenkins instance. Testcontainers uses the Docker Engine API to start this container. However, when it tries to do so, sending a POST request to the /containers/create endpoint, it receives the…
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:
- REGISTRY_STORAGE_DELETE_ENABLED=true
…
I'm facing a problem with the Docker operator Airflow. I need to make graceful exit after marking task as failed. Airflow sending Signal.SIGTERM to task, but script inside Docker container doesn't get SIGTERM, it is killed without a graceful…
I am posting with Postman through Docker API 1.41 an Exec command to a container to get md5, sha1 and sha256 of some files on same line. Works OK but it returns garbage at the beginning of the response.
Can anyone spot the problem?
POST…
reading the doc from docker remote api I get issue when start my container using the API
https://docs.docker.com/engine/api/v1.41/#operation/ContainerCreate
The doc at the "Publish or expose port (-p, --expose)" section talks about use the -p to…
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.
According to…
I have a program that simply pull a docker image through docker API and run it as a container, I can run it smoothly but my question is, can I dockerize this program?
A few issues I come to is:
how do I attach the unix socket /var/run/docker.sock…
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
= DefaultDockerClientConfig.createDefaultConfigBuilder()
…
When trying to list all my containers which exist with docker on windows 10 .
I got this error :
Library 'junixsocket-native-2.0.4.dll' not found!
This is my code :
public void listContainer() {
DefaultDockerClientConfig config
=…
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 host (" maybe " ).
This is my docker file :
and…
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.docker.io/token
-H "Content-Type:…
I have created a node.js express app that calls the Docker API on the unix socket /var/run/docker.sock
Anything involving a GET request works as expected. For anything involving a POST request, the action will get carried out, but then any future…
I have a container image called troubleshooting. There are 5 different versions of the image in the my private repository. (Meaning 5 different image digests listed.)
The most recent image has a tag on it called latest. I need a way to get the…