github.com/spg/deis@v1.7.3/store/admin/bin/boot (about) 1 #!/bin/bash 2 # 3 # This script is designed to be run inside the container 4 # 5 6 ETCD_PORT=${ETCD_PORT:-4001} 7 ETCD="$HOST:$ETCD_PORT" 8 9 confd -node $ETCD --confdir /app --log-level error --interval 5 & 10 11 # loop forever until the container is stopped 12 while true; do 13 sleep 1 14 done