Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jetbrains/teamcity-docker-minimal-agent
TeamCity minimal agent docker image sources
https://github.com/jetbrains/teamcity-docker-minimal-agent
docker-image teamcity teamcity-agent
Last synced: 4 months ago
JSON representation
TeamCity minimal agent docker image sources
- Host: GitHub
- URL: https://github.com/jetbrains/teamcity-docker-minimal-agent
- Owner: JetBrains
- License: apache-2.0
- Created: 2016-09-28T12:49:20.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-02-17T17:15:54.000Z (almost 2 years ago)
- Last Synced: 2024-04-13T12:06:58.559Z (9 months ago)
- Topics: docker-image, teamcity, teamcity-agent
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/jetbrains/teamcity-minimal-agent/
- Size: 49.8 KB
- Stars: 25
- Watchers: 15
- Forks: 32
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![official JetBrains project](http://jb.gg/badges/official-plastic.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
[![jetbrains/teamcity-minimal-agent](https://img.shields.io/docker/pulls/jetbrains/teamcity-minimal-agent.svg)](https://hub.docker.com/r/jetbrains/teamcity-minimal-agent/)## DEPRECATED TeamCity Minimal Agent Image Dockerfile
### :no_entry: This repository is no longer supported, please consider using [teamcity-docker-images](https://github.com/JetBrains/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.
2) Run the `docker build` command:
```
docker build -t teamcity-minimal-agent
```On Windows just execute `build.ps1` powershell script.
See our [detailed instructions](https://hub.docker.com/r/jetbrains/teamcity-minimal-agent/) on how to use the image in the Docker Hub repository .