Having an Artifactory server with a local docker repository configure. I want to push images to that repo.
I have Windows 2016 and installed Docker:
Docker version 1.12.2-cs2-ws-beta, build 050b611
I have creating the daemon.json configuration file in order to set the daemon to work with insecure registries and and edit the json as:
{"insecure-registries": ["art:8080"]}
I tag my image with:
docker tag java art:8080/java
then im trying to push it to Artifactory with:
docker push art:8080/java
when executing this command im getting:
The push refers to a repository [art:8080/java]
932b647616fa: Preparing
de57d9086f9a: Skipped foreign layer
f358be10862c: Skipped foreign layer
error parsing HTTP 404 response body: unexpected end of JSON input: ""
What does that menas and how can I push the image to my artifactory local repo in an insecure way?