Files
home-services/update_containers.sh

12 lines
215 B
Bash

#!/usr/bin/env bash
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "$SCRIPT_DIR"
if [ "$#" -gt 0 ]; then
python3 composectl.py "$@"
else
python3 composectl.py refresh --all
fi