IPTP Developer

Developer

  • Getting started
    • Docker
    • MarkDown
    • Merge
  • ESB
    • Configuration
  • XM
    • API
    • Chats
    • ERP Integration
    • Messages
    • Sync
  • IPTP ID
    • Integration
  • Ugene
    • API
    • Error codes
    • How create plugin
  • Live assistance api
    • API

General Docker commands

  • Show local images
$ docker images
  • Show run containers
$ docker ps
  • Show all local containers
$ docker ps -a
  • Delete image
$ docker rmi <image_id>
  • Push image to IPTP public Harbor repo
$ docker push harbor.iptp.dev:8443/library/IMAGE[:TAG]
  • Get IP Address of Container
$ docker inspect -f "{{ .NetworkSettings.IPAddress }}" Container_Name