Guest User

Untitled

a guest
Jan 9th, 2019
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. docker images
  2. REPOSITORY TAG IMAGE ID CREATED SIZE
  3. business-services latest aaaaaaaaaaaa 3 hours ago 120MB
  4. openjdk 8-jdk-alpine bbbbbbbbbbbb 2 weeks ago 103MB
  5.  
  6. docker login https://docker.mycompany.com/repositories/myusername/myrepository
  7. Username: myusername
  8. Password:
  9. Login Succeeded
  10.  
  11. docker tag business-services:latest docker.mycompany.com/repositories/myuserna/business-services:latest
  12.  
  13. docker images
  14. REPOSITORY TAG IMAGE ID CREATED SIZE
  15. business-services latest aaaaaaaaaaaa 3 hours ago 120MB
  16.  
  17. docker.mycompany.com/myusername/myrepository/business-services latest aaaaaaaaaaaa 3 hours ago 120MB
  18.  
  19. openjdk 8-jdk-alpine 04060a9dfc39 2 weeks ago 103MB
  20.  
  21. docker push docker.mycompany.com/myusername/myrepository/business-services
  22. The push refers to repository [docker.mycompany.com/myusername/myrepository/business-services]
  23.  
  24. denied: requested access to the resource is denied
  25.  
  26. docker push docker.mycompany.com/myusername/myrepository/business-services:latest
  27. The push refers to repository [docker.mycompany.com/myusername/myrepository/business-services]
  28.  
  29. denied: requested access to the resource is denied
  30.  
  31. docker tag business-services:latest docker.mycompany.com/business-services:latest
  32.  
  33. docker push docker.mycompany.com/business-services:latest
  34. The push refers to repository [docker.mycompany.com/business-services]
  35.  
  36. denied: requested access to the resource is denied
  37.  
  38. The push refers to a repository
  39. An image does not exist locally with the tag:
Add Comment
Please, Sign In to add comment