mirror of
https://github.com/GeorgeSG/sarah.git
synced 2026-06-21 02:47:44 +00:00
6 lines
222 B
Bash
Executable File
6 lines
222 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/docker-compose.yaml logs -f --tail=\"200\" | grep home-assistant"
|