forked from uPagge/rpi-teamcity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
35 lines (31 loc) · 825 Bytes
/
docker-compose.yml
File metadata and controls
35 lines (31 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
version: '3.9'
services:
server:
image: vlrpi/teamcity-server:ubuntu-bionic-2023.05
restart: always
container_name: teamcity_server
environment:
- TEAMCITY_SERVER_MEM_OPTS=-Xmx3g -XX:ReservedCodeCacheSize=450m
- TEAMCITY_HTTPS_PROXY_ENABLED=true
ports:
- "8111:8111"
volumes:
- teamcity_server_storage:/root/BuildServer
networks:
- teamcity_network
agent-alice:
image: vlrpi/teamcity-agent-dotnet:ubuntu-bionic-tc-2023.05-dotnet-supported
restart: always
container_name: teamcity_agent
volumes:
- /var/run/docker.sock:/var/run/docker.sock
depends_on:
- server
networks:
- teamcity_network
networks:
teamcity_network:
name: teamcity_network
volumes:
teamcity_server_storage:
name: teamcity_server_storage