-
Notifications
You must be signed in to change notification settings - Fork 7
/
docker-compose.yml
100 lines (91 loc) · 2.37 KB
/
docker-compose.yml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
version: "3"
services:
confluence:
container_name: confluence_${PACKAGE_NAME}
hostname: confluence
image: confluence-4-testing:${CONFLUENCE_VERSION}
build:
context: .
args:
CONFLUENCE_VERSION: ${CONFLUENCE_VERSION}
JAVA_VERSION: ${JAVA_VERSION}
environment:
- TZ
- LC_ALL
- LANG
- LANGUAGE
ports:
- "${CONFLUENCE_PORT}:8090"
- "${CONFLUENCE_SYNCHRONY_PORT}:8091"
- "${DEBUG_PORT}:5005"
depends_on:
- ldap
networks:
- confluence-net
volumes:
- ${VOLUME_PATH}${PACKAGE_NAME}:/var/atlassian/application-data/confluence
postgres:
image: postgres:${POSTGRESQL_VERSION}
container_name: postgres_${PACKAGE_NAME}
hostname: postgres
environment:
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=confluence
ports:
- "${POSTGRES_PORT}:5432"
networks:
- confluence-net
oracle:
image: oskarflores/confluence-database:oracle-${ORACLE_VERSION}
container_name: oracle
hostname: oracle
ports:
- "${ORACLE_LISTENER_PORT}:1521"
- "${ORACLE_PORT}:8080"
networks:
- confluence-net
mysql:
image: oskarflores/confluence-database:mysql-${MYSQL_VERSION}
container_name: mysql
hostname: mysql
ports:
- "${MYSQL_PORT}:3306"
networks:
- confluence-net
sqlserver:
image: oskarflores/confluence-database:sqlserver-${SQLSERVER_VERSION}
container_name: sqlserver
hostname: sqlserver
ports:
- "${SQLSERVER_PORT}:1433"
networks:
- confluence-net
ldap:
image: aruizca/confluence-test-ldap
container_name: ldap_${PACKAGE_NAME}
hostname: ldap
privileged: true
ports:
- "${LDAP_PORT}:389"
networks:
- confluence-net
puppeteer-confluence-setup:
image: aruizca/puppeteer-confluence-setup
container_name: puppeteer-confluence-setup_${PACKAGE_NAME}
hostname: puppeteer
environment:
- PPTR_HEADLESS=true
- PPTR_CONFLUENCE_BASE_URL=http://confluence:8090/confluence
- PPTR_JDBC_URL=jdbc:postgresql://postgres:5432/confluence
- PPTR_LDAP_PORT=389
- PPTR_LDAP_CONFIG=true
- PPTR_CONFLUENCE_LICENSE=${PPTR_CONFLUENCE_LICENSE}
volumes:
- "./screenshots:/app/screenshots"
depends_on:
- confluence
networks:
- confluence-net
networks:
confluence-net:
driver: bridge