Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 98b8342

Browse files
committed
Update docker-compose.yml
1 parent 952b30c commit 98b8342

File tree

1 file changed

+22
-17
lines changed

1 file changed

+22
-17
lines changed

src/Docker/servicestack-ci/docker-compose.yml

Lines changed: 22 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ services:
88

99
firebird3:
1010
image: "jacobalberty/firebird:3.0.4"
11-
networks:
12-
- ci-network
1311
ports:
1412
- "48101:3050"
1513
environment:
@@ -20,8 +18,6 @@ services:
2018

2119
mysql10.4:
2220
image: mariadb:10.4
23-
networks:
24-
- ci-network
2521
ports:
2622
- "48205:3306"
2723
environment:
@@ -31,8 +27,6 @@ services:
3127

3228
postgres11:
3329
image: postgres:11-alpine
34-
networks:
35-
- ci-network
3630
ports:
3731
- "48303:5432"
3832
environment:
@@ -42,8 +36,6 @@ services:
4236

4337
oracle11:
4438
image: epiclabs/docker-oracle-xe-11g
45-
networks:
46-
- ci-network
4739
ports:
4840
- "48401:1521"
4941
environment:
@@ -52,8 +44,6 @@ services:
5244

5345
MSSqlServer2017:
5446
image: mcr.microsoft.com/mssql/server:2017-latest-ubuntu
55-
networks:
56-
- ci-network
5747
ports:
5848
- "48501:1433"
5949
environment:
@@ -63,15 +53,14 @@ services:
6353

6454
redis:
6555
image: redis
66-
networks:
67-
- ci-network
68-
expose:
69-
- 6379
56+
ports:
57+
- "6379:6379"
58+
volumes:
59+
- "./data:/data"
60+
command: redis-server --appendonly yes
7061

7162
dynamodb:
7263
image: amazon/dynamodb-local
73-
networks:
74-
- ci-network
7564
ports:
7665
- "48000:8000"
7766

@@ -89,6 +78,22 @@ services:
8978
RABBITMQ_DEFAULT_PASS: guest
9079
RABBITMQ_DEFAULT_VHOST: /
9180

81+
server:
82+
image: jetbrains/teamcity-server
83+
ports:
84+
- "2080:8111"
85+
volumes:
86+
- /root/docker/teamcity/server/data:/data/teamcity_server/datadir
87+
- /root/docker/teamcity/server/logs:/opt/teamcity/logs
88+
89+
ci-agent:
90+
image: servicestack/ci-agent
91+
volumes:
92+
- /root/docker/build/ci-agent/conf:/data/teamcity_agent/conf
93+
environment:
94+
SERVER_URL: https://build.servicestack.net
95+
9296

9397
networks:
94-
ci-network:
98+
default:
99+
driver: bridge

0 commit comments

Comments
 (0)