Skip to content
This repository was archived by the owner on Apr 13, 2026. It is now read-only.

Latest commit

 

History

History
29 lines (20 loc) · 876 Bytes

File metadata and controls

29 lines (20 loc) · 876 Bytes

Deploying Codex

Docker

In order to deploy into Docker, make sure Docker is installed.

  1. Clone this repository.

  2. Run deploy/docker-compose/deploy.sh

    This will build fenrir locally. It will then run docker-compose up which uses images of gungnir and svalinn1 from dockerhub.

    To pull specific versions of the images, just set the <SERVICE>_VERSION environment variables before running the script.

    export SVALINN_VERSION=x.x.x
    export GUNGNIR_VERSION=x.x.x
    export FENRIR_VERSION=x.x.x

    If you don't want to set environment variables, set them inline when you run the script.

    SVALINN_VERSION=x.x.x deploy/docker-compose/deploy.sh
    
  3. To bring the containers down:

    docker-compose -f deploy/docker-compose/docker-compose.yml down