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

     1  version: '3.3'
     2  services:
     3  
     4    janus:
     5      image: hellofreshtech/janus
     6      ports:
     7        - "8080:8080"
     8        - "8081:8081"
     9      depends_on:
    10        - service1
    11        - auth-service
    12      volumes:
    13        - ./janus.toml:/etc/janus/janus.toml
    14        - ./apis:/etc/janus/apis
    15        - ./auth:/etc/janus/auth
    16  
    17    service1:
    18      image: rodolpheche/wiremock
    19      ports:
    20        - '9089:8080'
    21      volumes:
    22        - ./stubs/service1:/home/wiremock/mappings
    23  
    24    auth-service:
    25      image: rodolpheche/wiremock
    26      ports:
    27        - '9088:8080'
    28      volumes:
    29        - ./stubs/auth:/home/wiremock/mappings