mirror of
https://github.com/postmannen/ctrl.git
synced 2025-01-07 04:49:17 +00:00
20 lines
396 B
Markdown
20 lines
396 B
Markdown
|
# Create docker compose file for Steward
|
||
|
|
||
|
## docker-compose
|
||
|
|
||
|
Create a directory where you want your docker compose files, and enter that directory
|
||
|
|
||
|
Clone the steward repository:
|
||
|
|
||
|
```bash
|
||
|
mkdir my_dir
|
||
|
cd my_dir
|
||
|
git clone https://github.com/RaaLabs/steward.git
|
||
|
```
|
||
|
|
||
|
To create the docker-compose and env.env run:
|
||
|
|
||
|
```bash
|
||
|
go run main.go -brokerAddress=127.0.0.1:4223 -nkeySeedFile=./seed.txt
|
||
|
```
|