Container
|
Command
|
---|---|
Training microservice
|
docker stop <training_container_name>
Example: docker stop training-standalone
|
Result microservice
|
docker stop <result_container_name>
Example: docker stop result-standalone
|
Service
|
Command
|
---|---|
Training microservice
|
kill $(ps -e | grep 'training-standalone' | awk '{print $1}')
|
Result microservice
|
kill $(ps -e | grep 'result-standalone' | awk '{print $1}')
|
Service
|
Command
|
---|---|
Training microservice
|
Stop the twas-training-ms service.
|
Result microservice
|
Stop the twas-results-ms service.
|