Skip to content
Introducing Aletyx Decision Control — Enterprise decision management with governance and multi-environment deployment ×

Docker Registry Examples

Logging into the Aletyx Registry

Each edition has its own registry. Use your credentials to log in:

# Login to registry (replace with your password)
echo "your-password" | docker login registry-{{ edition }}.aletyx.services --username your-username --password-stdin

This becomes (for Innovator edition):

echo "your-password" | docker login registry-innovator.aletyx.services --username your-username --password-stdin

Pulling Decision Control

Decision Control images are edition-specific:

# Pull Decision Control image
docker pull registry-{{ edition }}.aletyx.services/decision-control-{{ edition }}:1.1.7

Example for different editions:

docker pull registry-innovator.aletyx.services/decision-control-innovator:1.1.7
docker pull registry-keystone.aletyx.services/decision-control-keystone:1.1.7
docker pull registry-horizon.aletyx.services/decision-control-horizon:1.1.7
docker pull registry-pioneer.aletyx.services/decision-control-pioneer:1.1.7

Running Decision Control

# Run Decision Control
docker run --rm --name decision-control \
  -p 8080:8080 \
  registry-{{ edition }}.aletyx.services/decision-control-{{ edition }}:1.1.7

Pulling Other Images

For images like CORS proxy that use the main product version:

# Pull CORS proxy (uses main product version with edition)
docker pull registry-{{ edition }}.aletyx.services/cors-proxy:10.1.0-aletyx-{{ edition }}

This becomes:

docker pull registry-innovator.aletyx.services/cors-proxy:10.0.0-aletyx-innovator

Complete Example Workflow

# 1. Login to registry
echo "your-password" | docker login registry-{{ edition }}.aletyx.services \
  --username your-username --password-stdin

# 2. Pull Decision Control
docker pull registry-{{ edition }}.aletyx.services/decision-control-{{ edition }}:1.1.7

# 3. Pull CORS proxy
docker pull registry-{{ edition }}.aletyx.services/cors-proxy:10.1.0-aletyx-{{ edition }}

# 4. Run Decision Control
docker run -d --name decision-control \
  -p 8080:8080 \
  registry-{{ edition }}.aletyx.services/decision-control-{{ edition }}:1.1.7

Registry URL Pattern

The registry URL follows this pattern:

registry-{edition}.aletyx.services

Where {edition} is one of: - pioneer - innovator - horizon - keystone

Image Naming Patterns

Decision Control

Decision Control images include the edition in the image name:

registry-{edition}.aletyx.services/decision-control-{edition}:{version}

Example: registry-innovator.aletyx.services/decision-control-innovator:1.1.7

Other Images

Most other images use the main product version with edition suffix:

registry-{edition}.aletyx.services/{image-name}:{product-version}-aletyx-{edition}

Example: registry-innovator.aletyx.services/cors-proxy:10.0.0-aletyx-innovator