github.com/deis/deis@v1.13.5-0.20170519182049-1d9e59fbdbfc/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