koenvervloesem / rasa-docker-arm

Rasa Docker image for ARMv7. Runs on a Raspberry Pi.
https://hub.docker.com/r/koenvervloesem/rasa
MIT License
19 stars 2 forks source link

Test working for ver 1.10.26 and some newbie question on docker #5

Open believeitcode opened 3 years ago

believeitcode commented 3 years ago

Hi , Thanks for building the arm images for Rasa on RPi 4 , i tested with ver 1.10.26 the rasa core server worked fine but i have yet test the actions server for it . I have question regarding to docker as i'm quite new to docker.

Question

1) What command line or modification to docker compose file do we need to start actions server at port 5055 .

2) Will your image work for rasa 2.x ver ?

Thanks

believeitcode commented 3 years ago

Btw there is some error occur when building the docker image which i think it don't affect much Error

koenvervloesem commented 3 years ago

Hi,

  1. You should consult the Rasa documentation for that.
  2. I haven't found the time yet to build a Docker image for Rasa 2.x versions (see https://github.com/koenvervloesem/rasa-docker-arm/issues/2).
  3. Yes, I have been seeing this error for a couple of releases now, but it doesn't seem to impact functionality.
koenvervloesem commented 3 years ago

Just for reference, this is the Docker Compose file I'm using to test the releases of my Docker images:

version: '3.7'
services:
  rasa:
    image: rasa:1.10.26
    expose:
      - 5005
    ports:
      - 5005:5005
    volumes:
      - ./app:/app
    command:
      - run
      - --cors
      - "*"