Skip to content

Instantly share code, notes, and snippets.

@Sprbb
Forked from g0t4/_resources.md
Created July 4, 2020 22:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sprbb/6aa61883e731dc8690c08ced84637c89 to your computer and use it in GitHub Desktop.
Save Sprbb/6aa61883e731dc8690c08ced84637c89 to your computer and use it in GitHub Desktop.
Resources for TeamCity Getting Started Course

Shortened URL for this gist: https://git.io/vitgf

Repositories

Tidbits

docker run -d \
           --restart unless-stopped \
           --name mailhog \
           -p 1025:1025 \
           -p 8025:8025 \
           mailhog/mailhog
version: '2'
services:
teamcity:
image: jetbrains/teamcity-server:10.0.1
volumes:
- ./data/server/datadir:/data/teamcity_server/datadir
- ./data/server/logs:/opt/teamcity/logs
ports:
- 8111:8111
teamcity-agent:
image: jetbrains/teamcity-agent:10.0.1
volumes:
- ./data/agent:/data/teamcity_agent/conf
environment:
SERVER_URL: http://teamcity:8111
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment