Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 621 Bytes

docker-image-install.md

File metadata and controls

29 lines (20 loc) · 621 Bytes

Using Docker Pull

Pull the latest image from Github Container Registry:

docker pull ghcr.io/chrivers/bifrost:latest

Curl and rename the example configuration file:

curl -O https://raw.githubusercontent.com/chrivers/bifrost/master/config.example.yaml
cp config.example.yaml config.yaml

And edit it with your favorite editor to your liking (see configuration reference).

Now run the Docker Container:

docker run -v $(pwd)/config.yaml:/app/config.yaml ghcr.io/chrivers/bifrost:latest

To view the logs, run the following command:

docker logs bifrost