{{image_name}}
is now published!

Share with others so they can use it in their Jina stack.

Python usage

Use this image in Flow API

from jina.flow import Flow
f = Flow().add(uses='{{image_name}}')

Use this image in Flow API and override YAML

from jina.flow import Flow
# assuming you have a running gateway on 192.168.0.123:45678
f = Flow().add(uses='{{image_name}}', uses_internal='my.yml')

Use this image remotely in Flow API

from jina.flow import Flow
# assuming you have a running gateway on 192.168.0.123:45678
f = Flow().add(uses='{{image_name}}', host='192.168.0.123', port_expose=45678)

Flow YAML usage

Use this image in Flow YAML

!Flow
pods:
  my_pod1:
    image: "{{image_name}}"

CLI usage

Use this image in Jina CLI

jina pod --uses {{image_name}}

Use this image in Docker CLI

docker run -p 55555:55555 -p 55556:55556 {{image_name}} --port-in 55555 --port-out 55556

Use this image in Docker CLI and override YAML

docker run -v $(pwd)/my.yml:/my.yml {{image_name}} --yaml-path /my.yml