-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (38 loc) · 909 Bytes
/
docker-compose.yml
File metadata and controls
38 lines (38 loc) · 909 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
36
37
38
version: '3.6'
services:
bamboo:
image: stellarity/atlassian-sdk
ports:
- "6990:6990"
volumes:
- ~/.m2:/root/.m2
- ./bamboo:/opt/bamboo
- ./plugin:/opt/plugin
- ./bootstrap:/bootstrap
command: /bootstrap/bamboo.sh
stdin_open: true
environment:
- BAMBOO_VERSION=${BAMBOO_VERSION-6.4.0}
networks:
mynet:
aliases:
- bamboo
webtest:
image: stellarity/webtest
volumes:
- ~/.m2:/root/.m2
- ~/.gradle/caches/modules-2:/root/.gradle/caches/modules-2
- ~/.gradle/wrapper:/root/.gradle/wrapper
- ./bamboo:/opt/bamboo
- ./bootstrap:/bootstrap
- ./test:/opt/test
command: /bootstrap/webtest.sh
environment:
- BAMBOO_HOME=/opt/bamboo/home
- BAMBOO_URL=http://bamboo:6990
networks:
mynet:
aliases:
- webtest
networks:
mynet: