Created
May 9, 2019 12:14
-
-
Save skylock/964ff97d80e2e27c53117f06b3d43c4b to your computer and use it in GitHub Desktop.
teamcity-server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
services: | |
server: | |
image: jetbrains/teamcity-server | |
ports: | |
- "8112:8111" | |
volumes: | |
- ./data_dir:/data/teamcity_server/datadir | |
- ./log_dir:/opt/teamcity/logs | |
teamcity-agent: | |
image: jetbrains/teamcity-agent | |
environment: | |
- SERVER_URL=http://server:8111 | |
- AGENT_NAME=regular_agent | |
teamcity-minimal-agent: | |
image: jetbrains/teamcity-minimal-agent | |
environment: | |
- SERVER_URL=http://server:8111 | |
- AGENT_NAME=minimal_agent |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment