⛔ This repository is no longer supported, please consider using teamcity-docker-images instead.
This project contains the Dockerfiles and all necessary scripts to build the Linux and Windows Docker images and run a TeamCity Build Agent inside the container.
You can pull the ready-to-use image from the Docker Hub repository
docker pull jetbrains/teamcity-minimal-agent
If you need to build your own image, you need to perform the following:
- On Unix extract
buildAgent.zip
of any version you'd like to use into thedist/buildagent
folder and prepare agent config directory. In the same directory where the Dockerfile is placed, run
mkdir dist
unzip buildAgent.zip -d dist/buildagent
mv dist/buildagent/conf dist/buildagent/conf_dist
On Windows just put buildAgent.zip
into the repository root.
- Run the
docker build
command:
docker build -t teamcity-minimal-agent
On Windows just execute build.ps1
powershell script.
See our detailed instructions on how to use the image in the Docker Hub repository .