Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jetbrains/teamcity-docker-agent

TeamCity agent docker image sources
https://github.com/jetbrains/teamcity-docker-agent

docker-image teamcity teamcity-agent

Last synced: 29 days ago
JSON representation

TeamCity agent docker image sources

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-agent](https://img.shields.io/docker/pulls/jetbrains/teamcity-agent.svg)](https://hub.docker.com/r/jetbrains/teamcity-agent/)

## DEPRECATED TeamCity 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-agent`

If you need to build your own image, you need to perform the following:

1) Pull our minimal agent image and re-tag it
```
docker pull jetbrains/teamcity-minimal-agent
docker tag jetbrains/teamcity-minimal-agent teamcity-minimal-agent
```

If you want to start with your own base agent image, see our [instructions](https://github.com/JetBrains/teamcity-docker-minimal-agent) on how to build it.
If you change the operation system, update the following line in the in Dockerfile appropriately:
```
apt-get install -y docker-engine=1.13.0-0~ubuntu-xenial
```

3) Run the `docker build` command:
```
docker build -t teamcity-agent
```

See our [detailed instructions](https://hub.docker.com/r/jetbrains/teamcity-agent/) on how to use the image in the Docker Hub repository.

## Expose docker engine to container

#### Common way:
* `docker run ... -e DOCKER_HOST=tcp://%docker-host%:%port%`

#### Linux hosts:
* `docker run ... -v /var/run/docker.sock:/var/run/docker.sock`
* `docker run ... --privileged -e DOCKER_IN_DOCKER=start`

#### Windows hosts:
* `docker run ... -v //var/run/docker.sock:/var/run/docker.sock` (In Linux containers mode)
* `docker run ... -v \\.\pipe\docker_engine:\\.\pipe\docker_engine` (For Windows Containers 1709+)
* `docker run ... -v /var/run/docker.sock:/var/run/docker.sock` ([via WSL & npiperelay](https://blogs.technet.microsoft.com/virtualization/2017/12/08/wsl-interoperability-with-docker/) in LCOW mode on Windows 1803+)