File: docker-compose.yml

package info (click to toggle)
wfuzz 3.1.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,648 kB
  • sloc: python: 13,161; makefile: 59; sh: 4
file content (18 lines) | stat: -rw-r--r-- 331 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
version: '2'
services:
  httpserver:
    build:
      context: .
      dockerfile: Dockerfile
    ports:
      - "8000:8000"
    command: python simple_server.py
  httpproxy:
    image: mitmproxy/mitmproxy
    ports:
      - "8080:8080"
    command: mitmdump
  httpbin:
    image: kennethreitz/httpbin
    ports:
      - "9000:80"