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

     1  version: '3'
     2  services:
     3  
     4    janus:
     5      image: motivlabs/janus:debug
     6      ports:
     7        - "8082:8080"
     8        - "8083:8081"
     9        - "40001:40000"
    10      depends_on:
    11        - service1
    12        - janus-database
    13      environment:
    14        - debug=1
    15      volumes:
    16        - ./janus.toml:/etc/janus/janus.toml
    17        - ~/dev/motiv/janus:/janus
    18  
    19    janus-database:
    20        image: mongo
    21        ports:
    22          - "27017:27017"
    23  
    24    # This container is just a helper to seed the database
    25    mongo-seed:
    26      build:
    27        context: .
    28        dockerfile: seed.Dockerfile
    29      depends_on:
    30        - janus-database
    31  
    32    service1:
    33      image: rodolpheche/wiremock
    34      ports:
    35        - '9090:8080'
    36      volumes:
    37        - ../front-proxy/stubs:/home/wiremock/mappings