https://github.com/official-stallion/stallion-stable
Release docker images for Stallion.
https://github.com/official-stallion/stallion-stable
docker docker-compose docker-image go golang stallion
Last synced: 3 months ago
JSON representation
Release docker images for Stallion.
- Host: GitHub
- URL: https://github.com/official-stallion/stallion-stable
- Owner: official-stallion
- Created: 2022-10-23T10:44:52.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-24T12:19:30.000Z (almost 3 years ago)
- Last Synced: 2023-08-24T13:59:42.360Z (almost 3 years ago)
- Topics: docker, docker-compose, docker-image, go, golang, stallion
- Language: Dockerfile
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stable


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