Skip to content

Docker

The Docker repository is used for working with docker images.

You can use the following sentencies while working with Docker:

  • login:

(use your сredentials)

$ docker login docker.$LOC.icdc.io

For personal access:

  • push:
    $ docker tag image:tag docker.$LOC.icdc.io/UID/image:tag
    $ docker push docker.$LOC.icdc.io/UID/image:tag
    
  • pull:
    $ docker pull docker.$LOC.icdc.io/UID/image:tag`
    

For team access:

  • push:

    $ docker tag image:tag docker.$LOC.icdc.io/TEAM_NAME-team/image:tag
    $ docker push docker.$LOC.icdc.io/TEAM_NAME-team/image:tag
    

  • pull:

    $ docker pull docker.$LOC.icdc.io/TEAM_NAME-team/image:tag