|
|
@@ -8,8 +8,8 @@ grafana_config_file=conf.tmp
|
|
|
grafana_config=config
|
|
|
|
|
|
compose_header_file=docker/compose_header.yml
|
|
|
-fig_file=docker-compose.yaml
|
|
|
-fig_config=docker-compose.yaml
|
|
|
+compose_file=docker-compose.yaml
|
|
|
+env_file=.env
|
|
|
|
|
|
if [ "$#" == 0 ]; then
|
|
|
blocks=`ls $blocks_dir`
|
|
|
@@ -24,15 +24,15 @@ if [ "$#" == 0 ]; then
|
|
|
exit 0
|
|
|
fi
|
|
|
|
|
|
-for file in $grafana_config_file $fig_file; do
|
|
|
+for file in $grafana_config_file $compose_file $env_file; do
|
|
|
if [ -e $file ]; then
|
|
|
echo "Deleting $file"
|
|
|
rm $file
|
|
|
fi
|
|
|
done
|
|
|
|
|
|
-echo "Adding Compose header to $fig_file"
|
|
|
-cat $compose_header_file >> $fig_file
|
|
|
+echo "Adding Compose header to $compose_file"
|
|
|
+cat $compose_header_file >> $compose_file
|
|
|
|
|
|
for dir in $@; do
|
|
|
current_dir=$blocks_dir/$dir
|
|
|
@@ -47,10 +47,16 @@ for dir in $@; do
|
|
|
echo "" >> $grafana_config_file
|
|
|
fi
|
|
|
|
|
|
- if [ -e $current_dir/$fig_config ]; then
|
|
|
- echo "Adding $current_dir/$fig_config to $fig_file"
|
|
|
- cat $current_dir/$fig_config >> $fig_file
|
|
|
- echo "" >> $fig_file
|
|
|
+ if [ -e $current_dir/$compose_file ]; then
|
|
|
+ echo "Adding $current_dir/$compose_file to $compose_file"
|
|
|
+ cat $current_dir/$compose_file >> $compose_file
|
|
|
+ echo "" >> $compose_file
|
|
|
+ fi
|
|
|
+
|
|
|
+ if [ -e $current_dir/$env_file ]; then
|
|
|
+ echo "Adding $current_dir/$env_file to .env"
|
|
|
+ cat $current_dir/$env_file >> .env
|
|
|
+ echo "" >> .env
|
|
|
fi
|
|
|
done
|
|
|
|