Release Stallion
docker images based on versions.
You can create a Stallion
server on docker from the images below.
Stallion
cluster environmental variables are as follow:
ST_SERVER_PORT
: cluster server portST_METRICS_PORT
: cluster metrics server port (available on/metrics
)ST_USER
: cluster root userST_PASSWORD
: cluster root password
amirhossein21/stallion:v1.4.1
To run image on a single container:
docker run -p 7025:7025 -d stallion amirhossein21/stallion:v1.4.1
Docker compose for stallion server:
version: "3.9"
services:
stallion-server:
image: amirhossein21/stallion:v1.4.1
ports:
- "7025:7025"
environment:
ST_SERVER_PORT: 7025
ST_METRICS_PORT: 7026
You can check docker hub repository for more information and image lists.