This README is actively maintained alongside the documentation. You can also reference the documentation page below for deeper guides and walkthroughs.
- Installation
- Uninstall
- Supported Platforms & Prerequisites
- Docker Usage
- Debug Mode
- Network Override
- Support
Below is a curated list of improvements to make IBRAMENU best-in-class for what it does. These are grouped by impact and effort so contributors can pick quick wins or bigger initiatives.
- Documentation refresh: expand quickstart, troubleshooting, and upgrade notes, plus a versioned changelog.
- Menu search & filtering: add a searchable menu with tags (e.g., Media, Networking, Security).
- Favorites & recent installs: allow users to pin frequently used apps.
- Pre-flight checks: validate Docker/Compose availability, OS compatibility, and permissions before install.
- App manifests: define a standard
manifest.ymlfor each app to generate menus and docs consistently. - Compose enhancements: support health checks, resource limits, and optional security hardening profiles.
- Network management: create the Docker network if missing and allow custom network selection per app.
- Debug mode & logs: structured logging and a diagnostics command for easier support.
- Release channels: stable vs. beta channels, plus signed releases or checksums.
- Extensible plugin system: allow community extensions without touching core scripts.
- CI quality gates: ShellCheck, linting, and minimal integration tests for compose generation.
Development has begun again, with ongoing updates focused on reliability and usability. If you're running this in production, keep pinning versions and review updates as they land. Community contributions are welcome.
wget -qO ./i https://raw.githubusercontent.com/ibracorp/ibramenu/main/ibrainit.sh &&\
chmod +x i &&\
./iThe ibrainit.sh script bootstraps the install (downloads dependencies and configures the
application). Inspect it before running if you’d like, for example:
curl -L https://raw.githubusercontent.com/ibracorp/ibramenu/main/ibrainit.sh | less
# or
wget -qO- https://raw.githubusercontent.com/ibracorp/ibramenu/main/ibrainit.sh | lesssudo wget -qO ./i https://raw.githubusercontent.com/ibracorp/ibramenu/main/ibrainit.sh &&\
sudo chmod +x i &&\
sudo ./i- Ubuntu 22.04 LTS (recommended)
- Ubuntu 20.04 LTS
- Docker Engine 24.0+
- Docker Compose plugin 2.20+
mdless(used by pre-flight checks)bash,curl/wget, and standard GNU utilities available on Ubuntu
Platforms like Unraid are not officially supported. You may get IBRAMENU running via the container workflow below, but expect limited troubleshooting support and potential feature gaps around OS detection, permissions, and path assumptions.
/opt/ibracorp/ibramenu/ibrauninstall.shsudo /opt/ibracorp/ibramenu/ibrauninstall.shThis is not supported and a WIP. Run the following commands.
git clone -b main --single-branch https://github.com/ibracorp/ibramenu.git
cd ibramenu
docker compose up -d --build --force-recreateTo generate the docker compose file for your apps you need to run ibramenu from within the container, run the following command.
docker run -it ibramenu /bin/bashOn launch, IBRAMENU validates that Docker, the Docker Compose plugin, and mdless are available,
and that the Docker daemon is accessible. Fix any missing dependencies before continuing.
Change the /opt/appdata to the location that you want your docker files to be generated to.
---
services:
ibramenu:
image: ibramenu:v0.0.0-1alpha
container_name: ibramenu
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/EST
volumes:
- /opt/appdata:/opt/appdata
- /var/run/docker.sock:/var/run/docker.sock
restart: unless-stopped- Run the following command to open and shell
docker exec -it ibramenu bash- In the shell that opens run the following command to start ibramenu
ibramenuTo enable additional logging, set IBRAMENU_DEBUG=1. Logs are written to
/opt/appdata/ibramenu/ibramenu.log.
By default IBRAMENU uses the network defined in .profile (ibranet). You can override this by
exporting IBRAMENU_DOCKER_NETWORK before launching the menu.
Make requests here: https://feedback.ibracorp.io/ibramenu
