github.com/Jeffail/benthos/v3@v3.65.0/resources/docker/schema_registry/docker-compose.yaml (about)

     1  version: '3.3'
     2  services:
     3    redpanda:
     4      image: docker.vectorized.io/vectorized/redpanda
     5      ports:
     6        - 8081:8081
     7      command:
     8        - 'redpanda start'
     9        - '--smp 1'
    10        - '--overprovisioned'
    11        - '--kafka-addr 0.0.0.0:9092'
    12        - '--advertise-kafka-addr redpanda:9092'
    13        - '--pandaproxy-addr 0.0.0.0:8082'
    14        - '--advertise-pandaproxy-addr redpanda:8082'
    15  
    16    benthos-in:
    17      image: jeffail/benthos
    18      command: [ '-w', '-c', '/benthos.yaml' ]
    19      volumes:
    20        - ./in.yaml:/benthos.yaml
    21  
    22    benthos-out:
    23      image: jeffail/benthos
    24      command: [ '-w', '-c', '/benthos.yaml' ]
    25      volumes:
    26        - ./out.yaml:/benthos.yaml