Sign inSign up

katorlys/aionui

By katorlys

Updated 10 days ago

Docker image for self-hosting AionUi

Image
Machine learning & AI
Web servers
0

8.7K

katorlys/aionui repository overview

aionui-docker

Docker image for self-hosting AionUi

Pull Requests Issues License

https://github.com/katorlys-samples/aionui-docker

Introduction

Docker image for self-hosting AionUi - the free, open-source Cowork app with AI Agents.

AionUi is licensed under Apache License 2.0.

Username & password

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

Usage

Docker
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
Docker Compose
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

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 .

BACK TO TOP


Copyright © 2026-present Katorly Lab

License

Tag summary

Content type

Image

Digest

sha256:092eec813

Size

168.8 MB

Last updated

10 days ago

docker pull katorlys/aionui