Home
Install
Docker

Docker Installation

Engine

Pulling the Engine Image

The Arcade Engine is stateless and the docker image is designed to scale horizontally for production environments.

The docker image for the engine can be pulled with

docker pull <repo>/arcadeai/engine:latest

Running the Engine

The engine can be run with:

docker run -d -p 9099:9099 -v ./engine.yaml:/bin/engine.yaml <repo>/arcadeai/engine:latest

where config.yaml is the path to the configuration file.

Actor

Arcade does not currently provide a prebuilt Actor image. However, you can build your own following the FastAPI Guide and running your app in a Docker container.