This repository contains images for the Visual Studio Team Services (VSTS) agent that runs tasks as part of a build or release.
VSTS agent images are tagged according to the base OS, an optional Team Foundation Server (TFS) version, and tools that are installed:
ubuntu-14.04
(ubuntu/14.04/Dockerfile)ubuntu-14.04-standard
(ubuntu/14.04/standard/Dockerfile)ubuntu-14.04-docker-17.12.0-ce
(ubuntu/14.04/docker/17.12.0-ce/Dockerfile)ubuntu-14.04-docker-17.12.0-ce-standard
(ubuntu/14.04/docker/17.12.0-ce/standard/Dockerfile)ubuntu-14.04-docker-18.06.1-ce
(ubuntu/14.04/docker/18.06.1-ce/Dockerfile)ubuntu-14.04-docker-18.06.1-ce-standard
(ubuntu/14.04/docker/18.06.1-ce/standard/Dockerfile)ubuntu-14.04-tfs-2018-u2
(ubuntu/14.04/tfs/2018-u2/Dockerfile)ubuntu-14.04-tfs-2018-u2-standard
(ubuntu/14.04/tfs/2018-u2/standard/Dockerfile)ubuntu-14.04-tfs-2018-u2-docker-17.12.0-ce
(ubuntu/14.04/tfs/2018-u2/docker/17.12.0-ce/Dockerfile)ubuntu-14.04-tfs-2018-u2-docker-17.12.0-ce-standard
(ubuntu/14.04/tfs/2018-u2/docker/17.12.0-ce/standard/Dockerfile)ubuntu-14.04-tfs-2018-u2-docker-18.06.1-ce
(ubuntu/14.04/tfs/2018-u2/docker/18.06.1-ce/Dockerfile)ubuntu-14.04-tfs-2018-u2-docker-18.06.1-ce-standard
(ubuntu/14.04/tfs/2018-u2/docker/18.06.1-ce/standard/Dockerfile)ubuntu-14.04-tfs-2018-u3
(ubuntu/14.04/tfs/2018-u3/Dockerfile)ubuntu-14.04-tfs-2018-u3-standard
(ubuntu/14.04/tfs/2018-u3/standard/Dockerfile)ubuntu-14.04-tfs-2018-u3-docker-17.12.0-ce
(ubuntu/14.04/tfs/2018-u3/docker/17.12.0-ce/Dockerfile)ubuntu-14.04-tfs-2018-u3-docker-17.12.0-ce-standard
(ubuntu/14.04/tfs/2018-u3/docker/17.12.0-ce/standard/Dockerfile)ubuntu-14.04-tfs-2018-u3-docker-18.06.1-ce
(ubuntu/14.04/tfs/2018-u3/docker/18.06.1-ce/Dockerfile)ubuntu-14.04-tfs-2018-u3-docker-18.06.1-ce-standard
(ubuntu/14.04/tfs/2018-u3/docker/18.06.1-ce/standard/Dockerfile)ubuntu-16.04
(ubuntu/16.04/Dockerfile)ubuntu-16.04-standard
(ubuntu/16.04/standard/Dockerfile)ubuntu-16.04-docker-17.12.0-ce
(ubuntu/16.04/docker/17.12.0-ce/Dockerfile)ubuntu-16.04-docker-17.12.0-ce-standard
(ubuntu/16.04/docker/17.12.0-ce/standard/Dockerfile)ubuntu-16.04-docker-18.06.1-ce
(ubuntu/16.04/docker/18.06.1-ce/Dockerfile)ubuntu-16.04-docker-18.06.1-ce-standard
,latest
(ubuntu/16.04/docker/18.06.1-ce/standard/Dockerfile)ubuntu-16.04-tfs-2018-u2
(ubuntu/16.04/tfs/2018-u2/Dockerfile)ubuntu-16.04-tfs-2018-u2-standard
(ubuntu/16.04/tfs/2018-u2/standard/Dockerfile)ubuntu-16.04-tfs-2018-u2-docker-17.12.0-ce
(ubuntu/16.04/tfs/2018-u2/docker/17.12.0-ce/Dockerfile)ubuntu-16.04-tfs-2018-u2-docker-17.12.0-ce-standard
(ubuntu/16.04/tfs/2018-u2/docker/17.12.0-ce/standard/Dockerfile)ubuntu-16.04-tfs-2018-u2-docker-18.06.1-ce
(ubuntu/16.04/tfs/2018-u2/docker/18.06.1-ce/Dockerfile)ubuntu-16.04-tfs-2018-u2-docker-18.06.1-ce-standard
(ubuntu/16.04/tfs/2018-u2/docker/18.06.1-ce/standard/Dockerfile)ubuntu-16.04-tfs-2018-u3
(ubuntu/16.04/tfs/2018-u3/Dockerfile)ubuntu-16.04-tfs-2018-u3-standard
(ubuntu/16.04/tfs/2018-u3/standard/Dockerfile)ubuntu-16.04-tfs-2018-u3-docker-17.12.0-ce
(ubuntu/16.04/tfs/2018-u3/docker/17.12.0-ce/Dockerfile)ubuntu-16.04-tfs-2018-u3-docker-17.12.0-ce-standard
(ubuntu/16.04/tfs/2018-u3/docker/17.12.0-ce/standard/Dockerfile)ubuntu-16.04-tfs-2018-u3-docker-18.06.1-ce
(ubuntu/16.04/tfs/2018-u3/docker/18.06.1-ce/Dockerfile)ubuntu-16.04-tfs-2018-u3-docker-18.06.1-ce-standard
(ubuntu/16.04/tfs/2018-u3/docker/18.06.1-ce/standard/Dockerfile)
Ubuntu 14.04 and 16.04 are the currently supported OSes, but there are plans for Windows support.
When used with VSTS, the agent version is automatically determined and downloaded at container startup based on the account to which the agent is connecting. When used with TFS, an image that matches the installed TFS version should be chosen.
Derived images that are based on the standalone agent images provide a variety of capabilities that enable it to support specific VSTS build and release tasks.
The latest
tag always points at a standard image based on the best supported OS that targets VSTS and includes capabilities enabling many of the built-in VSTS build and release tasks.
VSTS agents must be started with account connection information, which is provided through two environment variables:
VSTS_ACCOUNT
: the name of the Visual Studio accountVSTS_TOKEN
: a personal access token (PAT) for the Visual Studio account that has been given at least the Agent Pools (read, manage) scope.
To run the default VSTS agent image for a specific Visual Studio account:
docker run \
-e VSTS_ACCOUNT=<name> \
-e VSTS_TOKEN=<pat> \
-it microsoft/vsts-agent
When using an image that targets a specific TFS version, the connection information is instead supplied through one of the following environment variables:
TFS_HOST
: the hostname of the Team Foundation ServerTFS_URL
: the full URL of the Team Foundation ServerVSTS_TOKEN
: a personal access token (PAT) for the Team Foundation Server account that has been given at least the Agent Pools (read, manage) scope.
If TFS_HOST
is provided, the TFS URL is set to https://$TFS_HOST/tfs
. If TFS_URL
is provided, any TFS_HOST
environment variable is ignored.
To run a VSTS agent image for TFS 2018 that identifies the server at https://mytfs/tfs
:
docker run \
-e TFS_HOST=mytfs \
-e VSTS_TOKEN=<pat> \
-it microsoft/vsts-agent:ubuntu-16.04-tfs-2018
A more secure option for passing the personal access token is supported by mounting a file that contains the token into the container and specifying the location of this file with the VSTS_TOKEN_FILE
environment variable. For instance:
docker run \
-v /path/to/my/token:/vsts-token \
-e VSTS_ACCOUNT=<name> \
-e VSTS_TOKEN_FILE=/vsts-token \
-it microsoft/vsts-agent
Whether targeting VSTS or TFS, agents can be further configured with additional environment variables:
VSTS_AGENT
: the name of the agent (default:"$(hostname)"
)VSTS_POOL
: the name of the agent pool (default:"Default"
)VSTS_WORK
: the agent work folder (default:"_work"
)
The VSTS_AGENT
and VSTS_WORK
values are evaluated inside the container as an expression so they can use shell expansions. The VSTS_AGENT
value is evaluated first, so the VSTS_WORK
value may reference the expanded VSTS_AGENT
value.
To run a VSTS agent on Ubuntu 16.04 for a specific account with a custom agent name, pool and a volume mapped agent work folder:
docker run \
-e VSTS_ACCOUNT=<name> \
-e VSTS_TOKEN=<pat> \
-e VSTS_AGENT='$(hostname)-agent' \
-e VSTS_POOL=mypool \
-e VSTS_WORK='/var/vsts/$VSTS_AGENT' \
-v /var/vsts:/var/vsts \
-it microsoft/vsts-agent:ubuntu-16.04
These derived images include a set of standard capabilities that enable many of the built-in VSTS build and release tasks. The Ubuntu-based standard images currently include:
- Basic command-line utilities (curl, ftp, etc.)
- Essential build tools (gcc, make, etc.)
- Ansible 2.6.3
- Azure CLI 2.0.38
- CLang 6.0
- CMake 3.10.2
- Erlang/OTP 21
- Firefox 61.0.1
- GCC 5.4.0
- Go 1.9.4 and 1.10
- Google Chrome 68.0
- Haskell 2014.2.0.0
- Helm 2.9.1
- Heroku CLI 7.7.10
- HipHop VM (HHVM) 3.27.1
- ImageMagick 6.8.9-9
- Java OpenJDK 7 (1.7.0_95), 8 (1.8.0_181), 9 (1.9.0_4), 10 (1.10.0_2), and 11 (1.11.24)
- Java tools (Ant 1.9.6, Gradle 4.6, Maven 3.3.9)
- jq 1.5-1
- kubectl 1.11.1
- Mercurial 3.7.3
- Miniconda 4.5.4
- Mono 5.14.0.177
- Microsoft SQL Server Client Tools 17.2.0.1
- MySQL Client 5.7.23
- MySQL Server 5.7.23
- .NET Core SDK 2.1.400 (runtime 2.1.2)
- Node.js 8.11.3 LTS (with bower, grunt, gulp, n, parcel, and webpack)
- PhantomJS 2.1.1
- PHP 5.6, 7.0, 7.1, and 7.2 (with composer, phpunit, and xdebug)
- Pollinate 4.33
- Powershell Core v6.1.0-preview.2
- PyPy2 (6.0.0) and PyPy3 (6.0.0)
- Python 2.7.15, 3.4.8, 3.5.5, 3.6.5 and 3.7.0 (available through the Use Python Version task)
- rebar 3.6.1
- rsync 3.1.1
- Ruby 2.3.7, 2.4.4 and 2.5.1 (available through the Use Ruby Version task)
- Scala sbt-extras
- ShellCheck 0.3.7-5
- Sphinx 2.2.9
- Subversion 1.9.3
- Terraform 0.11.8
- xsltproc 1.1.28 and xalan 1.11
- Xvfb 2:1.18.4
- yarn 1.9.2
These derived images include a version of the Docker CLI and a compatible version of the Docker Compose CLI. This image cannot run most of the built-in VSTS build or release tasks but it can run tasks that invoke arbitrary Docker workloads.
These images do not run "Docker in Docker", but rather re-use the host instance of Docker. To ensure this works correctly, volume map the host's Docker socket into the container:
docker run \
-e VSTS_ACCOUNT=<name> \
-e VSTS_TOKEN=<pat> \
-v /var/run/docker.sock:/var/run/docker.sock \
-it microsoft/vsts-agent:ubuntu-16.04-docker-17.12.0-ce
These derived images bring together a docker image and a standard image.