You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
298 B
11 lines
298 B
#!/bin/bash
|
|
|
|
MINIO_ROOT_USER="sites"
|
|
MINIO_ROOT_PASSWORD="1f1c7c9b-b833-4462-ae41-d56f52faa49c"
|
|
export MINIO_ROOT_USER MINIO_ROOT_PASSWORD
|
|
|
|
forever start --killSignal=SIGINT app/workers/host-services.js
|
|
|
|
minio server ./data/minio --console-address ":9001"
|
|
|
|
forever stop app/workers/host-services.js
|