Hi guys.need you help.
I have docker with rasa-core… Usinng docker-compose to up dockers on aws.
docker-compose.yml
version: '3.2'
services:
bot-ui:
image: myimage1:latest
ports:
- "8282:8282"
network_mode: bridge
depends_on:
- mongo
env_file:
- bot-ui.env
volumes:
- type: bind
source: ./creds
target: /usr/src/app/creds
bot-brain:
image: myimage1:latest
ports:
- "80:5002"
- "443:5002"
- "5002:5002"
network_mode: bridge
depends_on:
- bot-ui
- duckling
volumes:
- type: bind
source: ./models/current/dialogue
target: /app/models/current/dialogue
- type: bind
source: ./models/current/nlu
target: /app/models/current/nlu
- type: bind
source: ./creds
target: /app/creds
duckling:
image: rasa/duckling
ports:
- "8000:8000"
network_mode: bridge
mongo:
image: mongo:latest
ports:
- "27017:27017"
volumes:
- '../cpd-mongo-db:/data/db'
network_mode: bridge
So dockers are up. and Rasa-core shoots log:
Rasa Core server is up and running on http://localhost:5002
Then I try to trigger rasa-core from Bot-framework using url:
https://myinstanceaddr.amazonaws.com/webhooks/botframework/webhook
But getting error:
<socket fileno=9 … >Invalid http version …
When I use ngrok to test locally it works perfect! thanks in advance and hope for your assistant:)