12 lines
129 B
Bash
Executable file
12 lines
129 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
cd ~/agent-system
|
|
|
|
git pull
|
|
|
|
docker compose build monitor-agent
|
|
|
|
docker compose up -d monitor-agent
|