All Projects → JetBrains → teamcity-docker-server

JetBrains / teamcity-docker-server

Licence: other
TeamCity server docker image sources

Programming Languages

Dockerfile
14818 projects
powershell
5483 projects
shell
77523 projects

Projects that are alternatives of or similar to teamcity-docker-server

teamcity-docker-compose
Compose to create working TeamCity server with PostgreSQL and Agents
Stars: ✭ 97 (+38.57%)
Mutual labels:  teamcity, teamcity-server
TeamCityApp
TeamCity in your pocket (Android application)
Stars: ✭ 48 (-31.43%)
Mutual labels:  teamcity, teamcity-server
teamcity-docker-samples
TeamCity docker compose samples
Stars: ✭ 116 (+65.71%)
Mutual labels:  teamcity, teamcity-server
teamcity-commit-hooks
Plugin for TeamCity simplifying installation of webhooks for repositories in GitHub and GitHub Enterprise.
Stars: ✭ 24 (-65.71%)
Mutual labels:  teamcity
teamcity-s3-artifact-storage-plugin
TeamCity plugin which allows replacing the TeamCity built-in artifacts storage with AWS S3
Stars: ✭ 39 (-44.29%)
Mutual labels:  teamcity
teamcity-azure-storage
TeamCity Azure artifacts storage support plugin
Stars: ✭ 14 (-80%)
Mutual labels:  teamcity
teamcity-runas-plugin
The teamcity-runas plugin to run TeamCity build steps under a specified user account on Windows or Linux.
Stars: ✭ 20 (-71.43%)
Mutual labels:  teamcity
swarmci
Swarm CI - Docker Swarm-based CI system or enhancement to existing systems.
Stars: ✭ 48 (-31.43%)
Mutual labels:  teamcity
vspheretools
vSphereTools is a set of scripts from DevOpsHQ to support working with vSphere and virtual machines (VMs) on it, which are based on the pysphere library.
Stars: ✭ 19 (-72.86%)
Mutual labels:  teamcity
Just Another Android App
An Android base app with loads of cool libraries/configuration NOT MAINTAINED
Stars: ✭ 1,654 (+2262.86%)
Mutual labels:  teamcity
teamcity-deployer-plugin
Deployer plugin for TeamCity CI server
Stars: ✭ 37 (-47.14%)
Mutual labels:  teamcity
go-teamcity
Golang client for TeamCity REST API
Stars: ✭ 32 (-54.29%)
Mutual labels:  teamcity
teamcity-rust-plugin
TeamCity Rust and Cargo plugin
Stars: ✭ 29 (-58.57%)
Mutual labels:  teamcity
newman-reporter-teamcity
A newman reporter for TeamCity.
Stars: ✭ 19 (-72.86%)
Mutual labels:  teamcity
tcWebHooks
WebHooks plugin for Teamcity. Supports many build states and payload formats.
Stars: ✭ 128 (+82.86%)
Mutual labels:  teamcity
teamcity
dohq-teamcity is a Python package providing access to the JetBrains TeamCity server API.
Stars: ✭ 24 (-65.71%)
Mutual labels:  teamcity
TeamCity.ServiceMessages
.NET library to deal with TeamCity Service messages
Stars: ✭ 42 (-40%)
Mutual labels:  teamcity
AnyStatus
A remote control for your CI/CD pipelines and more
Stars: ✭ 38 (-45.71%)
Mutual labels:  teamcity
teamcity-msbuild-logger
MSBuild logger for TeamCity
Stars: ✭ 16 (-77.14%)
Mutual labels:  teamcity
DBTestCompare
Application to compare results of two SQL queries
Stars: ✭ 15 (-78.57%)
Mutual labels:  teamcity

official JetBrains project jetbrains/teamcity-server

DEPRECATED TeamCity Server 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 server inside the container.

You can pull the ready-to-use image from the Docker Hub repository

docker pull jetbrains/teamcity-server

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

  1. On Unix extract TeamCity.tar.gz of any version you'd like to use into the dist/teamcity folder. In the same directory where the Dockerfile is placed, run

      mkdir dist
      tar zxf TeamCity-<version>.tar.gz -C dist/
      mv dist/TeamCity dist/teamcity
    

    On Windows just put TeamCity.tar.gz into the repository root.

  2. Run the docker build command:

     docker build -t teamcity-server
    

    On Windows just execute build.ps1 powershell script.

If you want to extend this image with your own setup scripts, you can place them in /services and the run-services.sh script will run them before starting TeamCity server. You can add your scripts with a COPY instruction in the Dockerfile, or better yet, in a new image based on this one:

FROM jetbrains/teamcity-server
COPY my-special-setup-script.sh /services/

See our detailed instructions on how to use the image in the Docker Hub repository .

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].