cpp-ipc/dockerfiles/start-demo.sh
2021-02-21 14:02:53 +08:00

12 lines
130 B
Bash

#!/bin/bash
cd $DEMO_HOME/
if [[ "$ROLE" == 's' ]]; then
# run server
./build/bin/kvs s
else
# run client
sleep 3600
fi