Spaces:
Runtime error
Runtime error
| version: "3.9" | |
| services: | |
| rasa: | |
| build: | |
| context: . | |
| dockerfile: Dockerfile.rasa | |
| container_name: quakeguard-rasa-1 | |
| ports: | |
| - "5005:5005" | |
| volumes: | |
| - ./rasa:/app/rasa | |
| depends_on: | |
| - actions | |
| actions: | |
| build: | |
| context: . | |
| dockerfile: Dockerfile.actions | |
| container_name: quakeguard-actions-1 | |
| ports: | |
| - "5055:5055" | |
| volumes: | |
| - ./actions:/app/actions | |
| ui: | |
| build: | |
| context: . | |
| dockerfile: Dockerfile.ui | |
| container_name: quakeguard-ui-1 | |
| ports: | |
| - "8501:8501" | |
| environment: | |
| - RASA_URL=http://rasa:5005/webhooks/rest/webhook | |
| depends_on: | |
| - rasa | |