docker-compose.yml 220 B

123456789101112
  1. version: "2"
  2. services:
  3. twgsproxy:
  4. image: pyproxy
  5. build: proxy-image
  6. volumes:
  7. - ./:/home/python/src
  8. working_dir: /home/python/src
  9. command: ["python", "tcp-proxy.py"]
  10. network_mode: "host"