Docker packaging for Out Of Your Element, a bridge between Matrix and Discord.
First, you need to run the setup script to generate the configuration files (registration.yaml and ooye.db).
mkdir data
docker run --rm -it -v $(pwd)/data:/data ghcr.io/t2linux/out-of-your-element:latest setupFollow the interactive prompts. The configuration files will be saved to your ./data directory.
Once setup is complete, start the container:
docker run -d \
--name ooye \
-v $(pwd)/data:/data \
-p 6693:6693 \
ghcr.io/t2linux/out-of-your-element:latestThe configuration and database are stored in /data inside the container. Mount this volume to persist your data.
/data/registration.yaml/data/ooye.db
OOYE_REF: The git reference (branch, tag, sha) of the OOYE repository to build.- When running the GitHub Action automatically, this defaults to the latest upstream tag.
- If manually triggering the workflow, you can specify a branch or tag (e.g.
mainorv3.3).