-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (36 loc) · 911 Bytes
/
docker-compose.yml
File metadata and controls
41 lines (36 loc) · 911 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
39
40
41
version: "3"
services:
test:
build: .
depends_on:
- postgres
- mssql
- mysql
- firebird
command: ./wait-for-it.sh postgres:5432 -- ./wait-for-it.sh mssql:1433 -- ./wait-for-it.sh mysql:3306 -- ./wait-for-it.sh firebird:3050 -- npm test
environment:
NODE_ENV: development
volumes:
- ./coverage/:/app/coverage
postgres:
image: postgres
environment:
POSTGRES_PASSWORD: password
mysql:
image: mysql
environment:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: test
mssql:
image: mcr.microsoft.com/azure-sql-edge
environment:
ACCEPT_EULA: "Y"
MSSQL_SA_PASSWORD: Passw0rd*
firebird:
image: jacobalberty/firebird
environment:
- EnableLegacyClientAuth=true
- ISC_PASSWORD=password
- FIREBIRD_DATABASE=db
- FIREBIRD_USER=firebird
- FIREBIRD_PASSWORD=password