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