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

Commit bf76f2d

Browse files
committed
added upsource / youtrack / minio / FnProject
1 parent d13f556 commit bf76f2d

File tree

5 files changed

+87
-3
lines changed

5 files changed

+87
-3
lines changed

development/.env

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,23 @@ NEXUS_VERSION=latest
88
DNS_EXTERNAL_IP=8.8.8.8
99

1010
GIT_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
1313
SELENOID_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
1717
DRONE_VERSION=alpine
1818
DRONE_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+

development/docker-compose.yml

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff 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+

development/minio/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
data/*

development/upsource/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
conf/*
3+
data/*
4+
logs/*

development/youtrack/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
conf/*
3+
data/*
4+
logs/*

0 commit comments

Comments
 (0)