docker-compose-python.yaml 230 B

123456789101112131415
  1. version: '3.9'
  2. services:
  3. python:
  4. container_name: python
  5. image: python:3.7.2-alpine3.9
  6. depends_on:
  7. - emqx1
  8. - emqx2
  9. tty: true
  10. networks:
  11. emqx_bridge:
  12. volumes:
  13. - ./python:/scripts