This repository was archived by the owner on Dec 13, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +87
-3
lines changed Expand file tree Collapse file tree 5 files changed +87
-3
lines changed Original file line number Diff line number Diff line change @@ -8,16 +8,23 @@ NEXUS_VERSION=latest
88DNS_EXTERNAL_IP = 8.8.8.8
99
1010GIT_VERSION = latest
11- # GIT_DOCKER_EXTERNAL_IP=git.rapidpm.org
11+ GIT_DOCKER_EXTERNAL_IP = git.rapidpm.org
1212# GIT_DOCKER_EXTERNAL_IP=192.168.0.100
1313SELENOID_DOCKER_EXTERNAL_IP = selenoid.rapidpm.org
14- SELENOID_DOCKER_EXTERNAL_IP = selenoid.rapidpm.org
14+ # SELENOID_DOCKER_EXTERNAL_IP=192.168.0.100
1515
1616# DRONE_VERSION=0.8.2
1717DRONE_VERSION = alpine
1818DRONE_DOCKER_EXTERNAL_IP = drone.rapidpm.org
19+ # DRONE_DOCKER_EXTERNAL_IP=192.168.0.100
1920# DRONE_DOCKER_SEC_TOKEN=
2021
2122
2223# SELENOID_VER=latest-release
23- SELENOID_VER = 1.4.3
24+ SELENOID_VER = 1.4.3
25+
26+
27+ # YOU SHOULD CHANGE THIS IN PRODUCTION
28+ MINIO_ACCESS_KEY = admin
29+ MINIO_SECRET_KEY = passwd
30+
Original file line number Diff line number Diff line change @@ -262,3 +262,70 @@ services:
262262 links :
263263 - selenoid-server
264264 command : [--selenoid-uri, "http://selenoid-server:4444"]
265+
266+
267+ youtrack :
268+ image : jetbrains/youtrack:2018.2.42133
269+ container_name : youtrack
270+ hostname : youtrack
271+ ports :
272+ - 7777:8080
273+ restart : always
274+ volumes :
275+ - $PWD/youtrack/data:/opt/youtrack/data
276+ - $PWD/youtrack/conf:/opt/youtrack/conf
277+ - $PWD/youtrack/logs:/opt/youtrack/logs
278+ - $PWD/youtrack/backups:/opt/youtrack/backups
279+
280+ upsource :
281+ image : jetbrains/upsource:2018.1.357
282+ container_name : upsource
283+ hostname : upsource
284+ ports :
285+ - 7788:8080
286+ restart : always
287+ volumes :
288+ - $PWD/upsource/data:/opt/upsource/data
289+ - $PWD/upsource/conf:/opt/upsource/conf
290+ - $PWD/upsource/logs:/opt/upsource/logs
291+ - $PWD/upsource/backups:/opt/upsource/backups
292+
293+
294+ minio :
295+ image : minio/minio
296+ container_name : minio
297+ hostname : minio
298+ ports :
299+ - " 9091:9000"
300+ environment :
301+ - MINIO_ACCESS_KEY=${MINIO_ACCESS_KEY}
302+ - MINIO_SECRET_KEY=${MINIO_SECRET_KEY}
303+ volumes :
304+ - $PWD/minio/data/:/data
305+ command : server /data
306+
307+
308+ fnserver :
309+ image : fnproject/fnserver
310+ container_name : fnserver
311+ hostname : fnserver
312+ restart : always
313+ ports :
314+ - " 6666:8080"
315+ volumes :
316+ - /var/run/docker.sock:/var/run/docker.sock
317+
318+ fnserver-ui :
319+ depends_on :
320+ - fnserver
321+ image : fnproject/ui
322+ container_name : fnserver-ui
323+ hostname : fnserver-ui
324+ restart : always
325+ ports :
326+ - " 6640:4000"
327+ links :
328+ - " fnserver"
329+ environment :
330+ - FN_API_URL=http://fnserver:8080
331+
Original file line number Diff line number Diff line change 1+ # Created by .ignore support plugin (hsz.mobi)
2+ data /*
Original file line number Diff line number Diff line change 1+ # Created by .ignore support plugin (hsz.mobi)
2+ conf /*
3+ data /*
4+ logs /*
Original file line number Diff line number Diff line change 1+ # Created by .ignore support plugin (hsz.mobi)
2+ conf /*
3+ data /*
4+ logs /*
You can’t perform that action at this time.
0 commit comments