Docker

The docker image is available in Oso's public repository (opens in a new tab). The application binds to port 8080 in the container, and you will need to map it to the desired port on the host system.

Installation

Pull the latest image from the repository


docker pull public.ecr.aws/osohq/fallback:latest

Compose the minimum .env file


OSO_API_TOKEN=[YOUR API TOKEN]
OSO_ENVIRONMENT=[YOUR ENVIRONMENT ID]
OSO_TENANT=[YOUR TENANT ID]

Additional environment variables are available.

Start the Oso Fallback node (in the example, mapped to port 8080/tcp on the host)


docker run --env-file=.env -p 127.0.0.1:8080:8080 public.ecr.aws/osohq/fallback:latest

Release Versions

VersionDateComments
0.2.0, latestOctober 12, 2023Performance improvement.
0.1.0September 22, 2023Initial release.