Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tschf/23c-podman-stack
https://github.com/tschf/23c-podman-stack
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/tschf/23c-podman-stack
- Owner: tschf
- Created: 2023-04-15T08:09:06.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-16T11:10:27.000Z (7 months ago)
- Last Synced: 2024-07-17T13:00:12.220Z (7 months ago)
- Language: Shell
- Size: 60.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# README
[23c Docs Home](https://docs.oracle.com/en/database/oracle/oracle-database/23/index.html)
## Pre-requisites
This assumes you're on linux - some of the scripts might not work for you.
* Uses curl
* Uses pwgen## Setup
Grab the images if you don't already have them. I like to do this is an independent
step rather than letting the container engine pull them in a "run" operation.```sh
./images.sh
```To get everything set up, there is a `./tearup.sh` script which sets everything
up. It does the following actions:Provisions a pod with 2 containers:
* db
* ords2 Volumes are created to store Oracle data and ORDS config redpectively:
* oradata
* ordsconfigConfigures the following in the database:
* New schema `DEVVER`
* New APEX workspace, `APP_DEV`
* Rest enables the `DEVVER` schema
In the future if you want to spin up or down the containers just run:```sh
podman pod stop dbfree-pod
podman pod start dbfree-pod
```