CoolFace
Apppublic

faster5586/rasa-chatbot

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
docker-compose.yml38 linesDownload Raw Back to root
1version: '3.0'2 3services:4  5  rasa_chatbot:6    env_file: 7      - ./.env8    build: .9    image: rasa-chatbot:latest10    ports:11      - 5005:500512    volumes:13      - ./models:/app/models14      - ./config:/app/config15    command:16      - rasa17      - run18      - --enable-api19      - --model20      - /app/models21      - --endpoints22      - /app/config/endpoints.local.yml23 24  action_server:25    env_file: 26      - ./.env27    build: actions28    image: rasa-chatbot-actions:latest29    volumes:30      - ./actions:/app/actions31    command:32      - python333      - -m34      - rasa_sdk35      - --actions36      - actions37 38