upcake 0.1.6

Fast, easy and consistent testing for HTTP APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
version: '3'
services:
  caddy:
    image: caddy:latest
    ports:
      - 4443:443
    volumes:
      - ./caddy:/etc/caddy
      - caddy_config:/config

  httpbin:
    image: kennethreitz/httpbin:latest
    ports:
      - 8888:80

volumes:
  caddy_data:
  caddy_config: