Install and Run AxonASP with Docker

Overview

This page explains how to install and run the Docker distribution of G3Pix AxonASP.

Use the official container image:

Syntax

Pull image:

docker pull ghcr.io/guimaraeslucas/axonasp

Run container:

docker run --name axonasp -p 8801:8801 ghcr.io/guimaraeslucas/axonasp

Parameters and Arguments

Common Docker command arguments used in AxonASP deployment:

Return Values

Remarks

Code Example

Basic installation and run:

# Pull latest image from GHCR
docker pull ghcr.io/guimaraeslucas/axonasp

# Run AxonASP in detached mode with host port mapping
docker run -d --name axonasp -p 8801:8801 --restart unless-stopped ghcr.io/guimaraeslucas/axonasp

# Check container status
docker ps

Run with mounted application and config directories:

docker run -d \
  --name axonasp \
  -p 8801:8801 \
  -v /opt/axonasp/www:/opt/axonasp/www \
  -v /opt/axonasp/config:/opt/axonasp/config \
  --restart unless-stopped \
  ghcr.io/guimaraeslucas/axonasp
Page: md/runtime/docker-installation.md
AxonASP Documentation Library
The search index is currently being created.
Please wait. This window will close automatically.