-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathdocker-compose.ci.windows.db.yml
More file actions
63 lines (57 loc) · 1.65 KB
/
docker-compose.ci.windows.db.yml
File metadata and controls
63 lines (57 loc) · 1.65 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
# Root Docker Compose file to run the tests on the development machine using some pre-initialized databases
# It must be used with powershell actions that mount the databases files.
version: '2.4' # 2.4 supports "platform", 3.x does not.
services:
sqlexpress:
container_name: nesci-sqlexpress-1
platform: windows
image: christianacca/mssql-server-windows-express
environment:
- SA_PASSWORD=Password1
- ACCEPT_EULA=Y
ports:
- "50001:1433"
# volumes:
# - "C:\\Temp\\NEventStore:c:\\data"
# - "nes_sqldata_windows_ci:c:\\sql\\userdbs\\data"
# - "nes_sqllog_windows_ci:c:\\sql\\userdbs\\log"
# - "nes_sqlbackup_windows_ci:c:\\sql\\backup"
# mongo:
# container_name: nesci-mongo-1
# platform: windows
# image: mongo
# ports:
# - "50002:27017"
## volumes:
## - nes_mongodata_windows_ci:/data/db
## - nes_mongoconfig_windows_ci:/data/configdb
mysql:
container_name: nesci-mysql-1
platform: windows
image: mysql:8.0 #5.7
command: --default-authentication-plugin=mysql_native_password
restart: always
environment:
MYSQL_ROOT_PASSWORD: Password1
MYSQL_DATABASE: NEventStore
MYSQL_USER: sa
MYSQL_PASSWORD: Password1
ports:
- "50003:3306"
postgres:
container_name: nesci-postgres-1
platform: windows
image: postgres
restart: always
environment:
POSTGRES_PASSWORD: Password1
POSTGRES_USER: sa
POSTGRES_DB: NEventStore
ports:
- "50004:5432"
#volumes:
# nes_sqldata_windows_ci:
# nes_sqllog_windows_ci:
# nes_sqlbackup_windows_ci:
# nes_mongodata_windows_ci:
# nes_mongoconfig_windows_ci: