Last active
December 4, 2019 00:12
-
-
Save rgstephens/d7f6d67cf0665307f43dee251e656724 to your computer and use it in GitHub Desktop.
Docker compose for Rasa X
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# endpoints.yml | |
# action_endpoint: | |
# url: "http://app:5055/webhook" | |
version: "3.4" | |
services: | |
duckling: | |
restart: always | |
image: "rasa/duckling:latest" | |
ports: | |
- "8000:8000" | |
command: ["duckling-example-exe", "--no-access-log", "--no-error-log"] | |
app: | |
build: | |
context: ./ | |
dockerfile: Dockerfile | |
ports: | |
- "5055:5055" | |
rasa: | |
image: rasa/rasa-x:latest | |
ports: | |
- "5002:5002" | |
volumes: | |
- ./:/app | |
command: rasa x --no-prompt --endpoints endpoints_local.yml --port 5005 --cors "*" --debug |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment