This repository has been archived on 2020-11-04. You can view files and clone it, but cannot push or open issues or pull requests.
gardening/scripts/services.sh

8 lines
174 B
Bash
Executable File

#!/usr/bin/env bash
ABRA_DIR="$HOME/.abra/apps"
for f in "$(find $ABRA_DIR -iname "compose*.yml")"; do
echo "$f" && yq read --printMode p "$f" 'services.*' && echo;
done