Hello every one! I have two actions scripts:
- specific.py;
- general.py; In the future I want to add more scripts.
Tell me how can I add two or more --actions in docker-compose.yml? My docker-compose file:
version: '3.0'
services:
rasa_core_botframework_current:
image: rasa/rasa_core:stable
ports:
- 5005:5005
volumes:
- ./models/rasa_core:/app/models
- ./config:/app/config
command:
- start
- --core
- models
- -c
- botframework
- --endpoints
- config/endpoints.yml
- -u
- current/
- --credentials
- config/credentials.yml
- --enable_api
networks:
- rasa
rasa_core_mattermost_ssp:
image: rasa/rasa_core:stable
ports:
- 5006:5005
volumes:
- ./models/rasa_core/ssp_dialogue:/app/models
- ./config:/app/config
command:
- start
- --core
- models
- -c
- mattermost
- --endpoints
- config/endpoints.yml
- -u
- ssp/
- --credentials
- config/credentials.yml
- --enable_api
networks:
- rasa
rasa_nlu:
image: rasa/rasa_nlu:stable-full
volumes:
- ./models/rasa_nlu:/app/models
- ./config:/app/config
command:
- start
- --path
- models
- -c
- config/nlu_config.yml
networks:
- rasa
action_server_ssp:
image: rasa/rasa_core_sdk:0.12.1
ports:
- "5055:5055"
volumes:
- ./actions:/app/actions
command:
- start
- --actions
- actions.ssp_actions
networks:
- rasa