Install Organism on macOS
Using Homebrew and Podman (recommended for macOS)
⚠️ Before You Begin
- • You'll need admin password (sudo access)
- • Installation requires Homebrew (will be installed if missing)
- • Estimated time: 3-5 minutes
- • Requires stable internet connection
⚡ Quick Install (Recommended)
Run this command in Terminal. You'll be prompted for your password:
bash <(curl -fsSL https://www.wisejnrs.net/install-macos.sh)Or install manually:
Option A: Docker Desktop (Recommended)
Download from docker.com/products/docker-desktop, then:
docker run -d \
--name wisejnrs-organism \
-p 4517:8888 -p 4518:8889 \
-v /var/run/docker.sock:/var/run/docker.sock \
-v organism-data:/app/data \
-e ORGANISM_URL=https://www.wisejnrs.net \
--restart unless-stopped \
wisejnrs/organism:latestOption B: Podman
Install and configure with rootful mode:
# Install Podman
brew install podman
# Initialize with rootful mode (required for container management)
podman machine init --rootful
podman machine start
# Run Organism
podman run -d \
--name wisejnrs-organism \
-p 4517:8888 -p 4518:8889 \
-v /var/run/podman/podman.sock:/var/run/docker.sock:Z \
-v organism-data:/app/data \
-e ORGANISM_URL=https://www.wisejnrs.net \
--restart unless-stopped \
wisejnrs/organism:latest✅ Next Steps:
Open http://localhost:4517 in your browser and sign in with your WiseJNRS account!