Rasa docker-compose error

Hi, I have been trying to configure rasa with docker-compose.yml . When i try to run docker-compose up, getting an error below…

ERROR: for rasa Cannot start service rasa: OCI runtime create failed: container_linux.go:345: starting container process caused “exec: “run”: executable file not found in $PATH”: unknown ERROR: Encountered errors while bringing up the project.

my docker-compose.yml

version: '3.0'
services:
  rasa:
    image: rasa/rasa:2.2.9-full
    ports:
      - 5005:5005
    volumes:
      - ./:/app
    command:
      - run

  action-server:
    image: rasa/rasa-sdk:2.2.0
    volumes:
      - ./actions:/app/actions
    ports:
      - 5055:5055

Please check the issue and reply to me. Thanks.