You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
506 B

5 years ago
5 years ago
5 years ago
  1. version: "3.2"
  2. services:
  3. www_proxy:
  4. container_name: www_proxy
  5. image: wernight/ngrok
  6. networks:
  7. - backend
  8. depends_on:
  9. - www_backend
  10. ports:
  11. - "4040:4040"
  12. environment:
  13. NGROK_AUTH: 326sUdHt1VQm92Y1ckLij_PMvbX8hA6v59QpB6tY8S
  14. NGROK_PORT: "app:8080"
  15. NGROK_REGION: ap
  16. # command: ngrok http www_backend:8080
  17. www_backend:
  18. container_name: app
  19. build: ./
  20. image: shihxuancheng/qa_bot
  21. networks:
  22. - backend
  23. networks:
  24. backend: