forked from wheels-dev/wheels
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
131 lines (122 loc) · 3.51 KB
/
Copy pathcompose.yml
File metadata and controls
131 lines (122 loc) · 3.51 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
version: "3.0"
services:
testui:
build:
context: ./docker/testui
image: cfwheels-testui:v1.0.2
ports:
- "3000:8080"
lucee5:
build:
context: ./
dockerfile: ./docker/lucee@5/Dockerfile
image: wheels-test-lucee5:v3.0.0
volumes:
- .:/wheels-test-suite
- ~/.CommandBox/artifacts:/root/.CommandBox/artifacts
- type: bind
source: ./docker/lucee@5/server.json
target: /wheels-test-suite/server.json
- type: bind
source: ./docker/lucee@5/CFConfig.json
target: /wheels-test-suite/CFConfig.json
- type: bind
source: ./docker/lucee@5/settings.cfm
target: /wheels-test-suite/config/settings.cfm
ports:
- "60005:8080"
lucee6:
build:
context: ./
dockerfile: ./docker/lucee@6/Dockerfile
image: cfwheels-test-lucee6:v1.0.2
volumes:
- ./:/cfwheels-test-suite
- ~/.CommandBox/artifacts:/root/.CommandBox/artifacts
- type: bind
source: ./docker/lucee@6/server.json
target: /cfwheels-test-suite/server.json
- type: bind
source: ./docker/lucee@6/settings.cfm
target: /cfwheels-test-suite/app/config/settings.cfm
ports:
- "60006:8080"
adobe2018:
build:
context: ./
dockerfile: ./docker/adobe@2018/Dockerfile
image: cfwheels-test-adobe2018:v1.0.2
volumes:
- ./:/cfwheels-test-suite
- ~/.CommandBox/artifacts:/root/.CommandBox/artifacts
- type: bind
source: ./docker/adobe@2018/server.json
target: /cfwheels-test-suite/server.json
- type: bind
source: ./docker/adobe@2018/settings.cfm
target: /cfwheels-test-suite/app/config/settings.cfm
ports:
- "62018:8080"
adobe2021:
build:
context: ./
dockerfile: ./docker/adobe@2021/Dockerfile
image: cfwheels-test-adobe2021:v1.0.2
volumes:
- ./:/cfwheels-test-suite
- ~/.CommandBox/artifacts:/root/.CommandBox/artifacts
- type: bind
source: ./docker/adobe@2021/server.json
target: /cfwheels-test-suite/server.json
- type: bind
source: ./docker/adobe@2021/settings.cfm
target: /cfwheels-test-suite/app/config/settings.cfm
ports:
- "62021:8080"
adobe2023:
build:
context: ./
dockerfile: ./docker/adobe@2023/Dockerfile
image: cfwheels-test-adobe2023:v1.0.1
volumes:
- ./:/cfwheels-test-suite
- ~/.CommandBox/artifacts:/root/.CommandBox/artifacts
- type: bind
source: ./docker/adobe@2023/server.json
target: /cfwheels-test-suite/server.json
- type: bind
source: ./docker/adobe@2023/settings.cfm
target: /cfwheels-test-suite/app/config/settings.cfm
ports:
- "62023:8080"
mysql:
image: mysql:latest
command: --default-authentication-plugin=mysql_native_password
restart: always
environment:
MYSQL_ROOT_PASSWORD: wheelstestdb
MYSQL_DATABASE: wheelstestdb
MYSQL_USER: wheelstestdb
MYSQL_PASSWORD: wheelstestdb
ports:
- "3306:3306"
postgres:
image: postgres:latest
restart: always
environment:
POSTGRES_USER: wheelstestdb
POSTGRES_PASSWORD: wheelstestdb
POSTGRES_INITDB_ARGS: --auth-host=md5
ports:
- "5432:5432"
sqlserver:
build:
context: ./
dockerfile: ./docker/sqlserver/Dockerfile
image: cfwheels-sqlserver:v1.0.1
environment:
MSSQL_SA_PASSWORD: x!bsT8t60yo0cTVTPq
ACCEPT_EULA: Y
MSSQL_PID: Developer
ports:
- "1433:1433"