Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 1.54 KB

README.md

File metadata and controls

33 lines (21 loc) · 1.54 KB

official JetBrains project jetbrains/teamcity-minimal-agent

DEPRECATED TeamCity Minimal Agent Image Dockerfile

⛔ 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:

  1. On Unix extract buildAgent.zip of any version you'd like to use into the dist/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.

  1. 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 .