forked from wheels-dev/wheels
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
88 lines (81 loc) · 2.21 KB
/
Copy pathdocker-compose.yml
File metadata and controls
88 lines (81 loc) · 2.21 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
version: "3.0"
services:
testui:
build:
context: ./src/docker/test-ui
image: cfwheels-testui:v1
ports:
- "3000:8080"
lucee5:
build:
context: ./
dockerfile: ./src/docker/Lucee5.Dockerfile
image: cfwheels-test-lucee5:v1
environment:
- ENV_MODE=local
- HEALTHCHECK_URI=http://127.0.0.1:8443/health.cfm
- cfconfigfile=./src/docker/CFConfig.json
- APP_DIR=/cfwheels-test-suite
volumes:
- ./.CommandBox/artifacts:/root/.CommandBox/artifacts
- .:/cfwheels-test-suite
- ./src/docker:/src/docker
ports:
- "60005:8080"
adobe2016:
build:
context: ./
dockerfile: ./src/docker/Adobe2016.Dockerfile
image: cfwheels-test-adobe2016:v1
environment:
- ENV_MODE=local
- HEALTHCHECK_URI=http://127.0.0.1:8443/health.cfm
- cfconfigfile=./src/docker/CFConfig.json
- APP_DIR=/cfwheels-test-suite
volumes:
- ./.CommandBox/artifacts:/root/.CommandBox/artifacts
- .:/cfwheels-test-suite
- ./src/docker:/src/docker
ports:
- "62016:8080"
adobe2018:
build:
context: ./
dockerfile: ./src/docker/Adobe2018.Dockerfile
image: cfwheels-test-adobe2018:v1
environment:
- ENV_MODE=local
- HEALTHCHECK_URI=http://127.0.0.1:8443/health.cfm
- cfconfigfile=./src/docker/CFConfig.json
- APP_DIR=/cfwheels-test-suite
volumes:
- ./.CommandBox/artifacts:/root/.CommandBox/artifacts
- .:/cfwheels-test-suite
- ./src/docker:/src/docker
ports:
- "62018:8080"
mysql56:
image: mysql:5.6
command: --default-authentication-plugin=mysql_native_password
restart: always
environment:
MYSQL_ROOT_PASSWORD: wheelstestdb
MYSQL_DATABASE: wheelstestdb
MYSQL_USER: wheelstestdb
MYSQL_PASSWORD: wheelstestdb
postgres:
image: postgres:13.6
restart: always
environment:
POSTGRES_USER: wheelstestdb
POSTGRES_PASSWORD: wheelstestdb
sqlserver:
build:
context: ./
dockerfile: ./src/docker/SQLServer.Dockerfile
image: cfwheels-sqlserver:v1
environment:
SA_PASSWORD: x!bsT8t60yo0cTVTPq
ACCEPT_EULA: Y
volumes:
- ./src/docker:/src/docker