Skip to content

Deployment

Local

You can start ravnar locally with the ravnar serve command.

Docker

ravnar provides an official Docker image, quay.io/nebari/ravnar.

Warning

While latest tag points to the latest release, there are no BC guarantees while ravnar is still in the beta development state.

Tip

The RAVNARPATH. variable is automatically set to /var/ravnar/plugins for convenient mounting of plugin modules and packages.

Note

The following configuration file is automatically included at /etc/ravnar/config.yml for convenience:

server:
  hostname: 0.0.0.0

If you mount your own config file at this path, make sure include the relevant options.

Example

docker run \
    --name ravnar --rm --pull always \
    --env RAVNAR_CONFIG=/config.yml \
    --volume ./config.yml:/config.yml:ro \
    --publish 8000:8000 \
    quay.io/nebari/ravnar:latest

with the following options in ./config.yml

server:
  logging:
    as_json: false

Helm

ravnar provides an official helm chart, quay.io/nebari/charts/ravnar.