github.com/technosophos/deis@v1.7.1-0.20150915173815-f9005256004b/store/admin/bin/boot (about) 1 #!/usr/bin/env 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