github.com/rochacon/deis@v1.0.2-0.20150903015341-6839b592a1ff/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