Skip to content

Commit eff5315

Browse files
committed
Change of docker image references in demo project from utplsqlv3/oracledb:19c-se2-small to gvenzl/oracle-xe:21-faststart
Resolves: #16
1 parent 69d0071 commit eff5315

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

.azure_templates/vars/vars-global.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
variables:
22
containerRegistry: "utPLSQL-docker"
3-
dockerRepo: "utplsqlv3/oracledb"
3+
dockerRepo: "gvenzl/oracle-xe"
44
gitRepo: "https://github.com/utPLSQL/utPLSQL.git"
55
sqlclUrl: "https://download.oracle.com/otn_software/java/sqldeveloper/sqlcl-latest.zip"
66
utplsqlcliUrl: "https://github.com/utPLSQL/utPLSQL-cli/releases/download/$(UTPLSQL_CLI_VERSION)/utPLSQL-cli.zip"

utlplsql-demo-project.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ variables:
1111
UTPLSQL_CLI_DIR: $(Build.BinariesDirectory)/utPLSQL-cli
1212
UTPLSQL_CLI_VERSION: 'v3.1.8'
1313
UTPLSQL_VERSION: 'v3.1.11'
14-
DOCKHER_HUB_REPO: 'utplsqlv3/oracledb'
14+
DOCKHER_HUB_REPO: 'gvenzl/oracle-xe'
1515
DB_USER: ut3_demo
1616
DB_PASS: ut3_demo
1717

@@ -45,16 +45,16 @@ jobs:
4545
- template: .azure_templates/t-extend-database-build.yml
4646
parameters:
4747
containerRegistry: utPLSQL-docker
48-
dockerRepo: utplsqlv3/oracledb
48+
dockerRepo: gvenzl/oracle-xe
4949
utplsqlVersion: ${UTPLSQL_VERSION}
5050
utplsqlDir: ${UTPLSQL_DIR}
5151
test_user: ${DB_USER}
5252
test_pwd: ${DB_PASS}
5353
targetDatabases:
54-
- oracleVersion: "19c-se2-small"
55-
connectionString: "127.0.0.1:1521/ORCLCDB"
54+
- oracleVersion: "21-faststart"
55+
connectionString: "127.0.0.1:1521/XE"
5656
dockerPortMap: "1521"
57-
dockerOptions: "--shm-size=1g"
57+
dockerOptions: "21-faststart"
5858
scripts:
5959
- displayName: "Install utPLSQL"
6060
user: "sys"

utplsql-cicd-flyway-demo.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ extends:
3535
- name: BuildDatabase
3636
containerRegistry: ${{ variables.containerRegistry }}
3737
dockerRepo: ${{ variables.dockerRepo }}
38-
connectionString: "127.0.0.1:1521/ORCLCDB"
39-
jdbcConnectionString: "UTBUILD:1521:ORCLCDB"
38+
connectionString: "127.0.0.1:1521/XE"
39+
jdbcConnectionString: "UTBUILD:1521:XE"
4040
environment: "build"
4141
artifactName: ${{ variables.artifactName }}
4242
packages:
@@ -57,9 +57,9 @@ extends:
5757
url: ${{ variables.ojdbcurl }}
5858
createDatabase:
5959
- dbname: UTBUILD
60-
oracleVersion: "19c-se2-small"
60+
oracleVersion: "21-faststart"
6161
dockerPortMap: "1521"
62-
dockerOptions: "--shm-size=1g"
62+
dockerOptions: ""
6363
scripts:
6464
- displayName: "Install utPLSQL"
6565
user: "sys"
@@ -100,15 +100,15 @@ extends:
100100
display_name: Deploy code to Test Env
101101
dependsOn: BuildDatabase
102102
target_environment: TEST
103-
connectionString: "127.0.0.1:1521/ORCLCDB"
104-
jdbcConnectionString: "UTTEST:1521:ORCLCDB"
103+
connectionString: "127.0.0.1:1521/XE"
104+
jdbcConnectionString: "UTTEST:1521:XE"
105105
containerRegistry: ${{ variables.containerRegistry }}
106106
dockerRepo: ${{ variables.dockerRepo }}
107107
createDatabase:
108108
- dbname: UTTEST
109-
oracleVersion: "19c-se2-small"
109+
oracleVersion: "21-faststart"
110110
dockerPortMap: "1521"
111-
dockerOptions: "--shm-size=1g"
111+
dockerOptions: ""
112112
packages:
113113
- name: sqlcl
114114
download_location: "$(Build.BinariesDirectory)/sqlcl-latest.zip"

utplsql-cicd-liquibase-demo.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ extends:
3434
- name: BuildDatabase
3535
containerRegistry: ${{ variables.containerRegistry }}
3636
dockerRepo: ${{ variables.dockerRepo }}
37-
connectionString: "127.0.0.1:1521/ORCLCDB"
37+
connectionString: "127.0.0.1:1521/XE"
3838
environment: "build"
3939
artifactName: ${{ variables.artifactName }}
4040
releaseMethod: "liquibase"
@@ -53,9 +53,9 @@ extends:
5353
addToPath: "$(UTPLSQL_CLI_DIR)/bin"
5454
createDatabase:
5555
- dbname: UTBUILD
56-
oracleVersion: "19c-se2-small"
56+
oracleVersion: "21-faststart"
5757
dockerPortMap: "1521"
58-
dockerOptions: "--shm-size=1g"
58+
dockerOptions: ""
5959
scripts:
6060
- displayName: "Install utPLSQL"
6161
user: "sys"
@@ -94,14 +94,14 @@ extends:
9494
display_name: Deploy code to Test Env
9595
dependsOn: BuildDatabase
9696
target_environment: TEST
97-
connectionString: "127.0.0.1:1521/ORCLCDB"
97+
connectionString: "127.0.0.1:1521/XE"
9898
containerRegistry: ${{ variables.containerRegistry }}
9999
dockerRepo: ${{ variables.dockerRepo }}
100100
createDatabase:
101101
- dbname: UTTEST
102-
oracleVersion: "19c-se2-small"
102+
oracleVersion: "21-faststart"
103103
dockerPortMap: "1521"
104-
dockerOptions: "--shm-size=1g"
104+
dockerOptions: ""
105105
packages:
106106
- name: sqlcl
107107
download_location: "$(Build.BinariesDirectory)/sqlcl-latest.zip"

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy