YGGDRA
YGGDRA logo

Demo Release

YGGDRA Demo

Download the current YGGDRA demo release, load the Docker image, and run the platform locally on Linux, macOS, Windows or Synology. This page is built from the release README and keeps the steps short, concrete and ready to paste.

v1.0.1 linux/amd64 Docker image archive 2.8 GB
Demo disclaimer

Demo of YGGDRA, for testing only, with no guarantee. The demo is limited to SNMP read-only. Please make sure SNMP is enabled on your switches.

This release contains a single Docker image archive: yggdra-release-v1.0.1-amd64.tar. It targets Linux x86-64 and starts internal containers, which is why the runtime command uses privileged mode and a persistent volume for state.

yggdra-release-v1.0.1-amd64.tar

Current demo image archive for Linux x86-64.

Archive actuelle de la démo pour Linux x86-64.

Download

1. Load the image

docker load -i yggdra-release-v1.0.1-amd64.tar

2. Run the container

docker run -d \
  --name yggdra-release \
  --privileged \
  -p 80:80 \
  -p 443:443 \
  -v yggdra_state:/state \
  yggdra-release:v1.0.1

3. Open the demo

https://<HOST_IP>/

Windows

Install Docker Desktop, open PowerShell in the folder that contains the archive, then run:

docker load -i .\yggdra-release-v1.0.1-amd64.tar
docker run -d --name yggdra-release --privileged -p 80:80 -p 443:443 -v yggdra_state:/state yggdra-release:v1.0.1

macOS

Works on Intel and Apple Silicon with Docker Desktop. On Apple Silicon, keep --platform linux/amd64.

docker load -i yggdra-release-v1.0.1-amd64.tar
docker run -d --name yggdra-release --platform linux/amd64 --privileged -p 80:80 -p 443:443 -v yggdra_state:/state yggdra-release:v1.0.1

Linux

Use the standard Docker workflow below:

docker load -i yggdra-release-v1.0.1-amd64.tar
docker run -d --name yggdra-release --privileged -p 80:80 -p 443:443 -v yggdra_state:/state yggdra-release:v1.0.1

Synology

Import the image in Container Manager, then create a privileged container with ports 80 and 443, plus a persistent volume mapped to /state.

docker load -i /path/to/yggdra-release-v1.0.1-amd64.tar
docker run -d --name yggdra-release --privileged -p 80:80 -p 443:443 -v yggdra_state:/state yggdra-release:v1.0.1

Apple Silicon compatibility

The demo can run on M1, M2, M3 and M4 machines through Docker’s x86-64 emulation. Startup can be slower, CPU usage can be higher, and performance is lower than with a native ARM64 image.

Synology CPU note

This release is suitable for x86-64 Synology models. ARM-based Synology systems are generally not appropriate for production use with this image.

Useful commands

docker logs -f yggdra-release
docker ps
docker stop yggdra-release
docker rm yggdra-release