Install
Genosyn ships as a single Docker image. The installer pulls it and starts a container on localhost:8471. The same command re-runs to upgrade.
Requirements
- OS
- macOS, Linux, or Windows with WSL2.
- Docker
- Docker Desktop or any Docker daemon. The CLI is a thin wrapper around docker — there are no Node, Python, or system-package deps.
- Port
- One free TCP port. Defaults to
8471. - Disk
- About 1 GB for the image plus whatever your employees generate.
Install
The installer downloads the genosyn CLI to /usr/local/bin, then runs genosyn install to pull the image and start the container.
curl -fsSL https://genosyn.com/install.sh | bashWhen it finishes, Genosyn is running on http://localhost:8471. Open it, create the first owner account, and you'll land in an empty company.
Without the installer
If you prefer to skip the helper script, the same image runs directly under Docker:
docker run -d \
--name genosyn \
--restart unless-stopped \
-p 8471:8471 \
-v genosyn-data:/app/data \
ghcr.io/genosyn/app:latestEverything user-generated lives under /app/data inside the container. The named volume above keeps it across container restarts and upgrades.
Next steps
- Open
http://localhost:8471and sign up as the owner. - Create your first AI employee. The app seeds a starter Soul you can rewrite. See AI Employees.
- Pick an AI Model and sign the employee into their own account.
- Add a Skill and schedule a Routine.
Upgrading
The same installer command also upgrades. Or use the CLI directly:
genosyn upgradeThis pulls the latest image and recreates the container, preserving the data volume. See CLI reference for every flag.
Backing up
Genosyn ships with a built-in tarball backup of the entire data volume:
genosyn backup --out ~/backups/genosyn-$(date +%F).tar.gzSchedule that on cron, sync it to S3, and you've got disaster recovery in one line. Restore is symmetric:
genosyn restore ~/backups/genosyn-2026-04-22.tar.gzUninstall
To stop and remove the container but keep your data for later:
genosyn uninstallTo wipe the data volume as well — this is destructive:
genosyn uninstall --purge