You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
694 B
Bash
17 lines
694 B
Bash
#!/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
|