Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ services:

mysql:
image: mysql:5.6.38
platform: linux/amd64
ports:
- "3306:3306"
environment:
Expand All @@ -22,6 +23,7 @@ services:

postgresql:
image: postgis/postgis:16-3.4-alpine
platform: linux/amd64
ports:
- "5432:5432"
environment:
Expand All @@ -31,6 +33,7 @@ services:

oracle:
image: gvenzl/oracle-xe:slim-faststart
platform: linux/amd64
ports:
- "1521:1521"
environment:
Expand All @@ -41,6 +44,7 @@ services:

cubrid:
image: cubrid/cubrid:11.3
platform: linux/amd64
ports:
- "33000:33000"
- "30000:30000"
Expand All @@ -57,11 +61,13 @@ services:

mongo:
image: mongo:8.0.9
platform: linux/amd64
ports:
- "27017:27017"

db2:
image: ibmcom/db2:11.5.0.0
platform: linux/amd64
privileged: true
ports:
- "50000:50000"
Expand All @@ -80,6 +86,7 @@ services:

sqlserver:
image: mcr.microsoft.com/mssql/server:2017-latest-ubuntu
platform: linux/amd64
environment:
- ACCEPT_EULA=Y
- SA_PASSWORD=Password1!
Expand All @@ -94,6 +101,7 @@ services:

firebird:
image: jacobalberty/firebird:v4
platform: linux/amd64
ports:
- "3050:3050"
environment:
Expand Down
Loading