mirror of
https://github.com/GeorgeSG/sarah.git
synced 2025-12-28 20:30:29 +00:00
6 lines
229 B
Bash
Executable File
6 lines
229 B
Bash
Executable File
#!/bin/bash
|
|
set -o allexport; source "$(dirname $0)/.env"; set +o allexport
|
|
|
|
ssh $REMOTE_HOST -p $REMOTE_PORT -t \
|
|
"docker-compose -f $REMOTE_REPO_PATH/config/docker-compose.yaml logs -f --tail=\"200\" | grep home-assistant"
|