mirror of https://github.com/docker/docs.git
Fixed typo in multi-service_container.md file (#3070)
This commit is contained in:
parent
62fb170509
commit
8ce933c965
|
@ -59,7 +59,7 @@ this in a few different ways.
|
||||||
while /bin/true; do
|
while /bin/true; do
|
||||||
PROCESS_1_STATUS=$(ps aux |grep -q my_first_process)
|
PROCESS_1_STATUS=$(ps aux |grep -q my_first_process)
|
||||||
PROCESS_2_STATUS=$(ps aux |grep -q my_second_process)
|
PROCESS_2_STATUS=$(ps aux |grep -q my_second_process)
|
||||||
if [ $PROCESS_!_STATUS || $PROCESS_2_STATUS ]; then
|
if [ $PROCESS_1_STATUS || $PROCESS_2_STATUS ]; then
|
||||||
echo "One of the processes has already exited."
|
echo "One of the processes has already exited."
|
||||||
exit -1
|
exit -1
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue