github.com/hellofresh/janus@v0.0.0-20230925145208-ce8de8183c67/examples/janus-tls/docker-compose.yml (about)

     1  version: '3'
     2  services:
     3  
     4    janus:
     5      image: hellofreshtech/janus
     6      ports:
     7        - "8443:8443"
     8        - "8444:8444"
     9      depends_on:
    10        - service1
    11      volumes:
    12        - ./apis:/etc/janus/apis
    13        - ./janus.toml:/etc/janus/janus.toml
    14        - ./janus.crt:/etc/janus/janus.crt
    15        - ./janus.key:/etc/janus/janus.key
    16  
    17    service1:
    18      image: rodolpheche/wiremock
    19      ports:
    20        - '9089:8080'
    21      volumes:
    22        - ../front-proxy/stubs:/home/wiremock/mappings