add setup script
parent
b90fde9ef3
commit
61603ecbf0
@ -0,0 +1,16 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
apt update && apt upgrade -y
|
||||||
|
apt install -y git curl unzip docker.io
|
||||||
|
wget -O buildAgentFull.zip https://teamcity.nld.inker.bot/update/buildAgentFull-Linux-x64.zip
|
||||||
|
unzip buildAgentFull.zip -d agent
|
||||||
|
rm buildAgentFull.zip
|
||||||
|
|
||||||
|
|
||||||
|
wget -O /lib/systemd/system/teamcityagent.service https://git.inker.bot/inksnow/teamcity-agent-install/raw/branch/main/teamcityagent.service
|
||||||
|
|
||||||
|
sed -i 's/http:\/\/localhost:8111\//https:\/\/teamcity.nld.inker.bot\//g' /root/agent/conf/buildAgent.properties
|
||||||
|
sed -i "s/Default Agent/$(hostname)/g" /root/agent/conf/buildAgent.properties
|
||||||
|
|
||||||
|
docker run --privileged --rm tonistiigi/binfmt --install all
|
||||||
|
docker rmi tonistiigi/binfmt
|
||||||
|
systemctl enable --now teamcityagent
|
Loading…
Reference in New Issue