@mangesh are you sure, you mention the command in right format in docker-compose? I would encourage, first see some docker-compose files of rasa and try run basic chatbot using shell. I can see error in command syntax.
@mangesh In your docker compose, why you used same image name? guiding-bot:latest it will be the container name and how you will differentiate later? check docker ps
@mangesh How you will manage the action.py requirements if you are using some external packages or library? for that you also need requirement.txt, see that also. Sample Example:
version: "3.0"
services:
rasa:
image: rasa/rasa:2.6.3-full
ports:
- 5005:5005
volumes:
- ./:/app
command:
- run
- -m
- models
- --enable-api
- --cors
- "*"
- --debug
action_server:
image: rasa/rasa_core_sdk:latest
ports:
- 5055:5055
volumes:
- ./actions:/app/actions
command:
- rasa
- run
- actions