-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (34 loc) · 828 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
38 lines (34 loc) · 828 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
version: "3.9"
services:
postgres:
image: postgres:16-alpine
environment:
POSTGRES_DB: bridge_test
POSTGRES_PASSWORD: bridge_test
POSTGRES_USER: bridge_test
ports:
- "5432:5432"
tmpfs: /var/lib/postgresql/data
mysql:
image: mysql:8
environment:
MYSQL_DATABASE: bridge_test
MYSQL_PASSWORD: bridge_test
MYSQL_ROOT_PASSWORD: bridge_test
MYSQL_USER: bridge_test
ports:
- "3306:3306"
tmpfs: /var/lib/mysql
mssql:
image: mcr.microsoft.com/mssql/server:2022-latest
environment:
ACCEPT_EULA: "Y"
MSSQL_SA_PASSWORD: "Bridge_test_123"
MSSQL_PID: Developer
ports:
- "1433:1433"
cockroachdb:
image: cockroachdb/cockroach:v24.1
command: start-single-node --insecure
ports:
- "26257:26257"