-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcompose.yml
More file actions
32 lines (30 loc) · 774 Bytes
/
compose.yml
File metadata and controls
32 lines (30 loc) · 774 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
services:
postgres:
restart: always
image: postgres:17
environment:
POSTGRES_USER: username
POSTGRES_PASSWORD: passwsss*1348394#@
POSTGRES_DB: testsuite
ports:
- "127.0.0.1:5432:5432"
mariadb:
restart: always
image: mariadb:12
environment:
MYSQL_USER: username
MYSQL_PASSWORD: passwsss*1348394#@
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: testsuite
ports:
- "127.0.0.1:3306:3306"
command: --default-authentication-plugin=mysql_native_password
mssql:
restart: always
image: mcr.microsoft.com/mssql/server:2022-latest
environment:
MSSQL_SA_PASSWORD: Mssql123mssql-@
ACCEPT_EULA: "Y"
MSSQL_PID: Developer
ports:
- "127.0.0.1:1433:1433"