Skip to content
Open
Show file tree
Hide file tree
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
10 changes: 10 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ jobs:
ACCEPT_EULA: Y
SA_PASSWORD: My@Test@Password1

db2server:
image: icr.io/db2_community/db2:11.5.8.0
ports:
- 50000:50000
env:
LICENSE: accept
DB2INSTANCE: db2inst1
DB2INST1_PASSWORD: password
DBNAME: testdb

steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
12 changes: 11 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,14 @@ services:

environment:
- MSSQL_SA_PASSWORD=My@Test@Password1
command: ["/opt/mssql/bin/sqlservr", "--accept-eula", "--reset-sa-password"]
command: ["/opt/mssql/bin/sqlservr", "--accept-eula", "--reset-sa-password"]

db2:
image: icr.io/db2_community/db2:11.5.8.0
ports:
- "50000:50000"
environment:
- LICENSE=accept
- DB2INST1_PASSWORD=password
- DBNAME=dbtest
- DB2INSTANCE=db2inst1