mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-08 00:51:55 +00:00
12 lines
176 B
Bash
12 lines
176 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
if [[ $1 == "master" ]]; then
|
||
|
./sbin/start_master.sh
|
||
|
fi
|
||
|
|
||
|
if [[ $1 == "slave" ]]; then
|
||
|
./sbin/start_slave.sh spark://$2:7077
|
||
|
fi
|
||
|
|
||
|
while true; do sleep 1000; done
|