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:
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:
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:
Where {edition} is one of:
- pioneer
- innovator
- horizon
- keystone
Image Naming Patterns¶
Decision Control¶
Decision Control images include the edition in the image name:
Example: registry-innovator.aletyx.services/decision-control-innovator:1.1.7
Other Images¶
Most other images use the main product version with edition suffix:
Example: registry-innovator.aletyx.services/cors-proxy:10.0.0-aletyx-innovator