-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
83 lines (83 loc) · 1.89 KB
/
docker-compose.yml
File metadata and controls
83 lines (83 loc) · 1.89 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
services:
test:
image: 'node'
command: bash -c 'npm install && npx mocha -r ts-node/register "test/**/*.test.ts"'
working_dir: '/hostdir'
volumes:
- './:/hostdir'
depends_on:
- postgres9
- postgres10
- postgres11
- postgres12
- postgres13
- postgres14
- mysql5
- mysql8
- mariadb10
postgres9:
image: 'postgres:9'
platform: linux/x86_64
environment:
- POSTGRES_DB=orm
- POSTGRES_USER=orm
- POSTGRES_PASSWORD=orm
postgres10:
image: 'postgres:10'
platform: linux/x86_64
environment:
- POSTGRES_DB=orm
- POSTGRES_USER=orm
- POSTGRES_PASSWORD=orm
postgres11:
image: 'postgres:11'
platform: linux/x86_64
environment:
- POSTGRES_DB=orm
- POSTGRES_USER=orm
- POSTGRES_PASSWORD=orm
postgres12:
image: 'postgres:12'
platform: linux/x86_64
environment:
- POSTGRES_DB=orm
- POSTGRES_USER=orm
- POSTGRES_PASSWORD=orm
postgres13:
image: 'postgres:13'
platform: linux/x86_64
environment:
- POSTGRES_DB=orm
- POSTGRES_USER=orm
- POSTGRES_PASSWORD=orm
postgres14:
image: 'postgres:14'
platform: linux/x86_64
environment:
- POSTGRES_DB=orm
- POSTGRES_USER=orm
- POSTGRES_PASSWORD=orm
mysql5:
image: 'mysql:5'
platform: linux/x86_64
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=true
- MYSQL_DATABASE=orm
- MYSQL_USER=orm
- MYSQL_PASSWORD=orm
mysql8:
image: 'mysql:8'
platform: linux/x86_64
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=true
- MYSQL_DATABASE=orm
- MYSQL_USER=orm
- MYSQL_PASSWORD=orm
mariadb10:
image: 'mariadb:10'
platform: linux/x86_64
environment:
- MARIADB_ALLOW_EMPTY_ROOT_PASSWORD=true
- MARIADB_DATABASE=orm
- MARIADB_USER=orm
- MARIADB_PASSWORD=orm