Skip to content

Instantly share code, notes, and snippets.

@rgstephens
Last active December 4, 2019 00:12
Show Gist options
  • Save rgstephens/d7f6d67cf0665307f43dee251e656724 to your computer and use it in GitHub Desktop.
Save rgstephens/d7f6d67cf0665307f43dee251e656724 to your computer and use it in GitHub Desktop.
Docker compose for Rasa X
# 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