Ok I’ll try that and let you know.
@jonathanpwheat Hi I saw your blog and I have tried what you mentioned in that blog. I’m trying with basic bot to check .
- Changed endpoints url into url: “http://action-server:5055/webhook”
- I used your docker-compse file for docker-compose.yml but it throws me errors. not able to connect action server .
This is my docker file.
FROM rasa/rasa:latest-full
COPY . /Bot
WORKDIR /Bot
COPY ./actions /app/actions
USER 1001
CMD [“init”]
This is my docker-compose.yml
version: “3.0”
services:
rasa:
container_name: rasa-server
image: rasa/rasa:latest-full
ports:
- 5005:5005
volumes:
- ./:/app
command:
- run
- --cors
- “*”
- --enable-api
- --log-file
- out.log
depends_on:
- action-server
action-server:
container_name: rasa-action-server
image: rasa/rasa-sdk:latest
volumes:
- ./actions:/app/actions
ports:
- “5055:5055”
please help me.
hmmm, the last screenshot shows http://0.0.0.0:5055
Let me try to follow my own tutorial. Like I said it’s been a while since I’ve use Docker for this. I’ll post back in a bit.
Hi @jonathanpwheat I solved my issue Thanks for your reply .
Oh that’s awesome. What did it end up being? Should I update that tutorial?
Yes you should update that tutorial. I followed this link Building a Rasa Assistant in Docker .
Dockerfile:
FROM rasa/rasa-sdk:2.8.0
WORKDIR /app
USER root
COPY ./actions /app/actions
USER 1001
In short:
- docker run -v %cd%:/app rasa/rasa:2.8.0-full train
- docker build . -t rasa/rasa-sdk:2.8.0
- docker network create my-project
- docker run -d -v %cd%/actions:/app/actions --net my-project --name action-server rasa/rasa-sdk:2.8.0
- docker run -it -v %cd%:/app -p 5005:5005 --net my-project rasa/rasa:2.8.0-full shell
@Shan Is this issue still persist or you able to solve this Shanthosh? If yes can I request to please close this thread as solution. Thanks.
@Shan Hi did you had to make docker_compose file or did it work without that I am having error while connecting action server trying to figure out how to do it