Docker image for self-hosting AionUi - the free, open-source Cowork app with AI Agents.
AionUi is licensed under Apache License 2.0.
The default username is admin and to get the password, check the logs of the container when it is first started.
docker logs aionui
The username and password cannot be changed. To reset the password, simply
docker exec aionui /opt/aionui-web/aionui-web resetpass --data-dir /data
For Docker Compose, use the following command to reset the password:
docker compose exec aionui /opt/aionui-web/aionui-web resetpass --data-dir /data
docker run -d \
--name aionui \
-p 3000:25808 \
-e AIONUI_HOST=0.0.0.0 \
-e AIONUI_PORT=25808 \
-e AIONUI_ALLOW_REMOTE=1 \
-e AIONUI_OPEN_BROWSER=0 \
-e AIONUI_DATA_DIR=/data \
-e AIONUI_LOG_DIR=/logs \
-v ./data:/data \
-v ./logs:/logs \
katorlys/aionui:latest
services:
aionui:
image: katorlys/aionui:latest
container_name: aionui
restart: unless-stopped
ports:
- "3000:25808"
environment:
AIONUI_HOST: 0.0.0.0
AIONUI_PORT: 25808
AIONUI_ALLOW_REMOTE: "1"
AIONUI_OPEN_BROWSER: "0"
AIONUI_DATA_DIR: /data
AIONUI_LOG_DIR: /logs
volumes:
- ./data:/data
- ./logs:/logs
Build the latest version:
docker build -t aionui:latest .
Build a specific AionUi version:
docker build --build-arg AIONUI_VERSION=2.1.20 -t aionui:2.1.20 .
Copyright © 2026-present Katorly Lab