Skip to content

Commit

Permalink
Merge branch 'main' into aditya059/supporting_custom_scripts_in_prebu…
Browse files Browse the repository at this point in the history
…iltdb_extensions
  • Loading branch information
gvenzl authored Sep 6, 2023
2 parents b5fe4a5 + 04a427e commit d9e15b2
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-push-dev-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# We need "some" commit history to check for changed files
fetch-depth: 32
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-push-instantclient-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# We need "some" commit history to check for changed files
fetch-depth: 32
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-push-nosql-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-push-nosql-sec-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-push-oci-cli-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout Git repository with history
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
26 changes: 26 additions & 0 deletions OracleDatabase/SingleInstance/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,32 @@

Sample container build files to facilitate installation, configuration, and environment setup for DevOps users. For more information about Oracle Database please see the [Oracle Database Online Documentation](https://docs.oracle.com/en/database/oracle/oracle-database/index.html).

* [How to build and run](#how-to-build-and-run)
* [Building Oracle Database container images](#building-oracle-database-container-images)
* [Building patched container images](#building-patched-container-images)
* [Building the container images using Podman](#building-the-container-images-using-podman)
* [Running Oracle Database in a container](#running-oracle-database-in-a-container)
* [Running Oracle Database Enterprise and Standard Edition 2 in a container](#running-oracle-database-enterprise-and-standard-edition-2-in-a-container)
* [Securely specifying the password when using Podman (Supported from 19.3.0 onwards)](#securely-specifying-the-password-when-using-podman-supported-from-1930-onwards)
* [Selecting the Edition (Supported from 19.3.0 release)](#selecting-the-edition-supported-from-1930-release)
* [Setting the SGA and PGA memory (Supported from 19.3.0 release)](#setting-the-sga-and-pga-memory-supported-from-1930-release)
* [Setting the CPU_COUNT and PROCESSES (Supported from 19.3.0 release)](#setting-the-cpu_count-and-processes-supported-from-1930-release)
* [Changing the admin accounts passwords](#changing-the-admin-accounts-passwords)
* [Enabling archive log mode while creating the database](#enabling-archive-log-mode-while-creating-the-database)
* [Configuring TCPS connections for Oracle Database (Supported from version 19.3.0 onwards)](#configuring-tcps-connections-for-oracle-database-supported-from-version-1930-onwards)
* [Running Oracle Database 23c FREE in a container](#running-oracle-database-23c-free-in-a-container)
* [Running Oracle Database 21c/18c Express Edition in a container](#running-oracle-database-21c18c-express-edition-in-a-container)
* [Running Oracle Database 11gR2 Express Edition in a container](#running-oracle-database-11gr2-express-edition-in-a-container)
* [Containerizing an on-premise database (Supported from version 19.3.0 release)](#containerizing-an-on-premise-database-supported-from-version-1930-release)
* [Deploying Oracle Database on Kubernetes](#deploying-oracle-database-on-kubernetes)
* [Running SQL*Plus in a container](#running-sqlplus-in-a-container)
* [Running scripts after setup and on startup](#running-scripts-after-setup-and-on-startup)
* [Known issues](#known-issues)
* [Frequently asked questions](#frequently-asked-questions)
* [Support](#support)
* [License](#license)
* [Copyright](#copyright)

## How to build and run

This project offers sample Dockerfiles for:
Expand Down

0 comments on commit d9e15b2

Please sign in to comment.