-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdatabase-compose.yml
More file actions
55 lines (55 loc) · 1.41 KB
/
database-compose.yml
File metadata and controls
55 lines (55 loc) · 1.41 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
services:
postgres:
image: postgres:17-alpine
container_name: libredb-postgres
restart: unless-stopped
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- "5432:5432"
mongodb:
image: mongo:latest
container_name: libredb-mongodb
restart: unless-stopped
environment:
MONGO_INITDB_ROOT_USERNAME: admin
MONGO_INITDB_ROOT_PASSWORD: admin
ports:
- "27017:27017"
mysql:
image: mysql:latest
container_name: libredb-mysql
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: mysql
ports:
- "3306:3306"
mssql:
# Use 2022-latest to avoid SQL Server 2025 NUMA/processor topology assert in containers.
# Limit CPUs to avoid: ASSERT (result * DrtlGetProcessorCoreCount() == DrtlGetProcessorCount())
image: mcr.microsoft.com/mssql/server:2022-latest
container_name: libredb-mssql
restart: unless-stopped
environment:
ACCEPT_EULA: "Y"
MSSQL_SA_PASSWORD: Password123!
MSSQL_DATABASE: mssql
ports:
- "1433:1433"
deploy:
resources:
limits:
cpus: "4"
memory: 4G
oracle:
image: gvenzl/oracle-xe
container_name: libredb-oracle
restart: unless-stopped
environment:
ORACLE_PDB: ORCLPDB1
ORACLE_PASSWORD: Password123!
ports:
- "1521:1521"