Skip to content

katorlys-samples/aionui-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

aionui-docker

Docker image for self-hosting AionUi

Pull Requests Issues License

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

About

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

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Generated from katorlys-samples/Template