Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How do I connect to a GitHub Action #45

Closed
theory opened this issue Nov 7, 2021 · 14 comments
Closed

How do I connect to a GitHub Action #45

theory opened this issue Nov 7, 2021 · 14 comments
Assignees
Labels
documentation Improvements or additions to documentation

Comments

@theory
Copy link

theory commented Nov 7, 2021

I appreciate the GitHub Actions example in the README, but I'm struggling to figure out how to connect. Would it be possible to extend the example to show how to connect to the Service Container?

@theory
Copy link
Author

theory commented Nov 7, 2021

I worked it out, for 11-slim and 18-slim at least:

  • Set ORACLE_PASSWORD when starting the service
  • Use the following parts to connect:
    • username: system
    • password: As set in ORACLE_PASSWORD
    • host: 127.0.0.1
    • port: As mapped or ${{ job.services.oracle.ports[1521] }}
    • database/sid: XE

Worked out once I found flowable/flowable-engine@18c751f.

@gvenzl gvenzl self-assigned this Nov 8, 2021
@gvenzl gvenzl added the documentation Improvements or additions to documentation label Nov 8, 2021
@gvenzl
Copy link
Owner

gvenzl commented Nov 8, 2021

Hi @theory,

Yes, that for sure could be a helpful addition for other users!
Was that information that you posted above enough for you to figure out how to connect or was there anything else missing that you think could help users to ramp up quicker?

@theory
Copy link
Author

theory commented Nov 8, 2021

Yes, I think so.

@theory
Copy link
Author

theory commented Nov 8, 2021

Although it does not work for me for 21, sadly. The error is:

ORA-12637: Packet receive failed (DBD ERROR: OCIServerAttach)

I wonder if the health checks aren't keeping it running or something.

@gvenzl
Copy link
Owner

gvenzl commented Nov 14, 2021

Hey @theory, we just discovered a bad network bug/issue with Docker that prevented users from connecting from the outside world over at #43. Although ORA-12637: Packet receive failed didn't show up as a symptom, it would fit the general issue of not being able to connect. I've just uploaded new image versions that work around that issue. Could you perhaps try again and see whether the issue is also fixed for you, more out of curiosity than anything.

gvenzl added a commit that referenced this issue Nov 14, 2021
@theory
Copy link
Author

theory commented Nov 14, 2021

That does seem to have fixed the issue, as I have a new permissions error to work with (presumably the system user does not have permission to write to the gsmuser schema; I'll find one it can write to). Thanks!

@theory
Copy link
Author

theory commented Nov 14, 2021

And the (an) answer is ggsys! Thank you!

@gvenzl
Copy link
Owner

gvenzl commented Nov 14, 2021

Oh that's awesome, congrats and glad to hear!

Hm, GGSYS is an internal user that is used for GoldenGate. It shouldn't be used for anything else.

Your error above showed:

ORA-01950: no privileges on tablespace 'USERS' (DBD ERROR: error possibly near <> indicator at char 21 in '
INSERT INTO <
>releases (version, installed_at, installer_name, installer_email)
VALUES (:p1, current_timestamp, :p2, :p3)

which means that the user didn't have a quota on the tablespace USERS.
However, the SYSTEM user does have the UNLIMITED TABLESPACE privilege, so that should not cause the issue.
If you like, I'm happy to help you investigate this further.

@theory
Copy link
Author

theory commented Nov 14, 2021

Yeah, it seems weird that the system user can't just create objects and write to them in whatever schema it wants. I've now switched to the 21 image and ggsys didn't work anymore, either. So I wrote a little routine that selects all the users and tries to create a table in each user's schema and insert into it. The results for the 21 image, again connected to the XE SID and using there system user:

    # SYS: fail
    # AUDSYS: fail
    # SYSTEM: success
    # SYSBACKUP: success
    # SYSDG: fail
    # SYSKM: fail
    # SYSRAC: fail
    # OUTLN: success
    # GSMADMIN_INTERNAL: success
    # GSMUSER: fail
    # GSMROOTUSER: fail
    # DIP: fail
    # XS$NULL: fail
    # REMOTE_SCHEDULER_AGENT: fail
    # DBSFWUSER: success
    # ORACLE_OCM: fail
    # SYS$UMF: fail
    # DGPDB_INT: fail
    # DBSNMP: success
    # APPQOSSYS: success
    # GSMCATUSER: fail
    # GGSYS: success
    # XDB: fail
    # ANONYMOUS: fail
    # CTXSYS: success
    # DVSYS: success
    # MDSYS: success
    # MDDATA: fail
    # LBACSYS: success
    # DVF: fail
    # OPS$ORACLE: fail

So I just picked one.

theory added a commit to sqitchers/sqitch that referenced this issue Nov 14, 2021
Add a new script, `.github/ubuntu/all-apt-prereqs.sh`, to install all apt
packages at once, and teach each of the engine scripts not to install apt
packages when `SKIP_DEPENDS` is set. Also have the Postgres an SQLite scripts
fall back on a default version to install if one is not passed. Remove the old
`prereqs.sh`. And have the SQLite script install SQLite into `/opt/sqlite` to be
more like the other engine installers, and have it and the Oracle script properly
share the `LD_LIBRARY_PATH` variable.

The new workflow, `.github/workflows/coverage.yml`, sets up all of the services
and clients, as well as modules for reporting coverage to Coveralls, and runs
the tests. Now that it uses a script installed in `local/bin`, teach all the
workflows to cache all of `local`, not just `local/lib`.

Get Oracle 21 tests working, too. Thanks to @gvenzl's help in
gvenzl/oci-oracle-xe#45.

Remove `.travis.yml` and references to it. Travis testing has not worked for a
while, and is no more.

Have `prove` run tests in parallel in 4 processes where it runs multiple tests,
so that builds finish more quickly.

Add build and release badges to README.md, and move most links to the bottom of
the text for better plain text legibility. Most of the GitHub badges don't
handle the Emoji correctly, but hopefully that will be addressed before long.

Finally, add a call to `disconnect` to `t/oracle.t` to prevent a segfault
that Devel::Cover seems to induce in DBD::Oracle (see perl5-dbi/DBD-Oracle#111).
@gvenzl
Copy link
Owner

gvenzl commented Nov 15, 2021

Hm, interesting, that script shows SYSTEM as a success though.

Is there any reason why you could not just use the $APP_USER environment variable and connect with that user?
Or is it because you can so far still only connect to the SID (in which the APP_USER is not being created).

gvenzl added a commit that referenced this issue Nov 15, 2021
* Add artifactory upload

Signed-off-by: gvenzl <[email protected]>

* Adding Container Example Start/Creation Script

* Incorporated feedback and fixes from pull request in example script

* Fix for #43

Signed-off-by: gvenzl <[email protected]>

* Remove Oracle Memory Speed (OMS) PMEM binaries

Signed-off-by: gvenzl <[email protected]>

* Remove MLE

Signed-off-by: gvenzl <[email protected]>

* Added PWgen check

* Clean lastlog

Signed-off-by: gvenzl <[email protected]>

* Add 21c backups

Signed-off-by: gvenzl <[email protected]>

* Fix typo for 21 tests

Signed-off-by: gvenzl <[email protected]>

* Fix for #50, set exec permissions for shell scripts

Signed-off-by: gvenzl <[email protected]>

* Add utPLSQL as users

Signed-off-by: gvenzl <[email protected]>

* Better GitHub Actions documentation as per #45

Signed-off-by: gvenzl <[email protected]>

Co-authored-by: Daniel Haanpaa [Lab0] <[email protected]>
@theory
Copy link
Author

theory commented Nov 15, 2021

That's what I do for the 11 image, since the user is created in XE. So yes, it's becauseI'm using a sid. I could make it work with TWO_TASK, I expect, but what I have works for now.

@gvenzl
Copy link
Owner

gvenzl commented Nov 15, 2021

Let's continue this conversation over at #46.
Btw, I added the additional details to the README.md under the GitHub Actions section.
Do these details make sense to you?

@theory
Copy link
Author

theory commented Nov 15, 2021

Yeah, that looks great, thank you.

@gvenzl
Copy link
Owner

gvenzl commented Nov 27, 2021

Awesome, thanks a lot for the confirmation, @theory!

@gvenzl gvenzl closed this as completed Nov 27, 2021
gvenzl added a commit that referenced this issue Dec 2, 2024
* Update tests and retries

Signed-off-by: gvenzl <[email protected]>

* Update all references to REGULAR images

Signed-off-by: gvenzl <[email protected]>

* Clean zip files in lib dir

Signed-off-by: gvenzl <[email protected]>

* Remove not needed deps from fortran runtime

Signed-off-by: gvenzl <[email protected]>

* Remove inventory directory

Signed-off-by: gvenzl <[email protected]>

* Move zip file to ORACLE_BASE for host-only vols

Signed-off-by: gvenzl <[email protected]>

* Use SHRINK SPACE for TEMP files

Signed-off-by: gvenzl <[email protected]>

* Exit SQL*Plus on SQL errors

Signed-off-by: gvenzl <[email protected]>

* Add tag and upload scripts

Signed-off-by: gvenzl <[email protected]>

* Remove XDB

Signed-off-by: gvenzl <[email protected]>

* Remove Oracle Text

Signed-off-by: gvenzl <[email protected]>

* Remove Spatial

Signed-off-by: gvenzl <[email protected]>

* Escape $ signs

Signed-off-by: gvenzl <[email protected]>

* Fix rm ctx typo

Signed-off-by: gvenzl <[email protected]>

* Create new TEMP tablespace for SEED

Signed-off-by: gvenzl <[email protected]>

* Shrink UNDO tablespaces

Signed-off-by: gvenzl <[email protected]>

* Intro Artifactory uploads

Signed-off-by: gvenzl <[email protected]>

* Add fully qualified tags

Signed-off-by: gvenzl <[email protected]>

* Update ReadMe

Signed-off-by: gvenzl <[email protected]>

* Undo retention no longer required

Signed-off-by: gvenzl <[email protected]>

* Further reduce 11g slim image

Signed-off-by: gvenzl <[email protected]>

* No longer needed due to new UNDO tablespace creation

Signed-off-by: gvenzl <[email protected]>

* Remove OJVM and Java Packages + Multimedia and XDK dependencies

Signed-off-by: gvenzl <[email protected]>

* Update ReadMe

Signed-off-by: gvenzl <[email protected]>

* Introduce tests for ORACLE_PASSWORD and ORACLE_RANDOM_PASSWORD

Signed-off-by: gvenzl <[email protected]>

* ER #16: provide APP user variables

Signed-off-by: gvenzl <[email protected]>

* Add Ora pwd, random pwd and app user/pwd tests

Signed-off-by: gvenzl <[email protected]>

* Remove workspace manager

Signed-off-by: gvenzl <[email protected]>

* Remove OLAP

Signed-off-by: gvenzl <[email protected]>

* Update package dependencies removal

Signed-off-by: gvenzl <[email protected]>

* Make removal messages consistent

Signed-off-by: gvenzl <[email protected]>

* Fix Java Packages removal

Signed-off-by: gvenzl <[email protected]>

* ER #22: provide GitHub Actions snippet

Signed-off-by: gvenzl <[email protected]>

* Remove Java Package leftovers

Signed-off-by: gvenzl <[email protected]>

* Do not remove SLAX, used for PL/SQL

Signed-off-by: gvenzl <[email protected]>

* Remove Oracle Text, produce SLIM image

Signed-off-by: gvenzl <[email protected]>

* Update dep removal

Signed-off-by: gvenzl <[email protected]>

* Add 18c slim tests

Signed-off-by: gvenzl <[email protected]>

* Do not remove LDAP folder

Signed-off-by: gvenzl <[email protected]>

* Update test descriptions

Signed-off-by: gvenzl <[email protected]>

* SQLPlus: fail on error

Signed-off-by: gvenzl <[email protected]>

* Remove OJVMSYS leftover

Signed-off-by: gvenzl <[email protected]>

* ER #23: Support ORACLE_DATABASE

Signed-off-by: gvenzl <[email protected]>

* Add checkpoint after UNDO switch

Signed-off-by: gvenzl <[email protected]>

* Remove GPX, standalone, can be downloaded

Signed-off-by: gvenzl <[email protected]>

* Update container test run script

Signed-off-by: gvenzl <[email protected]>

* Update ReadMe for OARCLE_DATABASE 18c only

Signed-off-by: gvenzl <[email protected]>

* Update ReadMe with SLIM image

Signed-off-by: gvenzl <[email protected]>

* Add slim images to upload scripts

Signed-off-by: gvenzl <[email protected]>

* Remove Spatial

Signed-off-by: gvenzl <[email protected]>

* Remove Oracle R

Signed-off-by: gvenzl <[email protected]>

* Remove Cluster Ready Services (crs)

Signed-off-by: gvenzl <[email protected]>

* Remove Clsuter Verification Utility

Signed-off-by: gvenzl <[email protected]>

* Remove deinstall directory

Signed-off-by: gvenzl <[email protected]>

* Remove Oracle Database Provider for Distributed Relational Database Architecture (DRDA)

Signed-off-by: gvenzl <[email protected]>

* Remove install directory

Signed-off-by: gvenzl <[email protected]>

* Update ReadMe

Signed-off-by: gvenzl <[email protected]>

* Remove 'ord' and 'ordim' directories

Signed-off-by: gvenzl <[email protected]>

* Remove Universal Installer

Signed-off-by: gvenzl <[email protected]>

* Remove additional components

Signed-off-by: gvenzl <[email protected]>

* update option flag for build script

Signed-off-by: gvenzl <[email protected]>

* Fix typo in sqlnet.ora

Signed-off-by: gvenzl <[email protected]>

* disable netca

Signed-off-by: gvenzl <[email protected]>

* Register new PDB with Listener

Signed-off-by: gvenzl <[email protected]>

* set shared servers to 0

Signed-off-by: gvenzl <[email protected]>

* Fix cleanup for non-localhost bulid containers

Signed-off-by: gvenzl <[email protected]>

* Remove unnecessary bianries and libraries

Signed-off-by: gvenzl <[email protected]>

* Doc: Remove unnecessary bianries and libraries

Signed-off-by: gvenzl <[email protected]>

* Add backup for old images

Signed-off-by: gvenzl <[email protected]>

* use fully qualified image urls

Signed-off-by: gvenzl <[email protected]>

* invoke backup of old images by default

Signed-off-by: gvenzl <[email protected]>

* Add users to ReadMe

Signed-off-by: gvenzl <[email protected]>

* List RPM package removal alphabetically

Signed-off-by: gvenzl <[email protected]>

* List RPM package removal alphabetically

Signed-off-by: gvenzl <[email protected]>

* Gracefully stop listener (now that listener is started manually)

Signed-off-by: gvenzl <[email protected]>

* Fix typo in RPM package removal

Signed-off-by: gvenzl <[email protected]>

* Introducing 21c-full

Signed-off-by: gvenzl <[email protected]>

* Fixing minor Doc bug

Signed-off-by: gvenzl <[email protected]>

* Add image users

Signed-off-by: gvenzl <[email protected]>

* Add 21c supported tags

Signed-off-by: gvenzl <[email protected]>

* Explain persistent containers

Signed-off-by: gvenzl <[email protected]>

* Update 18c to '18c and onwards'

Signed-off-by: gvenzl <[email protected]>

* Add cleanup to 21c images

Signed-off-by: gvenzl <[email protected]>

* Add jOOQ as image user

Signed-off-by: gvenzl <[email protected]>

* Introducing 21c regular

Signed-off-by: gvenzl <[email protected]>

* Fix static ora* location scripts

Signed-off-by: gvenzl <[email protected]>

* Add 21c images for upload

Signed-off-by: gvenzl <[email protected]>

* Update Readme with 21c tags

Signed-off-by: gvenzl <[email protected]>

* Add artifactory upload

Signed-off-by: gvenzl <[email protected]>

* Adding Container Example Start/Creation Script

* Incorporated feedback and fixes from pull request in example script

* Fix for #43

Signed-off-by: gvenzl <[email protected]>

* Remove Oracle Memory Speed (OMS) PMEM binaries

Signed-off-by: gvenzl <[email protected]>

* Remove MLE

Signed-off-by: gvenzl <[email protected]>

* Added PWgen check

* Clean lastlog

Signed-off-by: gvenzl <[email protected]>

* Add 21c backups

Signed-off-by: gvenzl <[email protected]>

* Fix typo for 21 tests

Signed-off-by: gvenzl <[email protected]>

* Fix for #50, set exec permissions for shell scripts

Signed-off-by: gvenzl <[email protected]>

* Add utPLSQL as users

Signed-off-by: gvenzl <[email protected]>

* Better GitHub Actions documentation as per #45

Signed-off-by: gvenzl <[email protected]>

* Document Upscheme user (#56)

Signed-off-by: gvenzl <[email protected]>

* Update RPM package uninstall for new OL image

Signed-off-by: gvenzl <[email protected]>

* Introducing 21c-slim

Signed-off-by: gvenzl <[email protected]>

* Remove ore.so in 18c

Signed-off-by: gvenzl <[email protected]>

* Move REDO resize to other resize operations to avoid 'checkpoint incomplete' during setup

Signed-off-by: gvenzl <[email protected]>

* Resize REDO logs at end to avoid 'checkpoint incomplete' during setup

Signed-off-by: gvenzl <[email protected]>

* Add Sqitch to users as per #46

Signed-off-by: gvenzl <[email protected]>

* 21-slim GA ready

Signed-off-by: gvenzl <[email protected]>

* Put Docker.io login as first step

Signed-off-by: gvenzl <[email protected]>

* Remove Examples folder from main ReadMe

Signed-off-by: gvenzl <[email protected]>

* Assign variable values before input check

Signed-off-by: gvenzl <[email protected]>

* Fix example script 'pwgen' check

Signed-off-by: gvenzl <[email protected]>

* Introduce fix for #64 (Increase SGA_TARGET on high CPU count)

Signed-off-by: gvenzl <[email protected]>

* Remove Replay Upgrade feature

Signed-off-by: gvenzl <[email protected]>

* Clean up METASTYLESHEET LOBs

Signed-off-by: gvenzl <[email protected]>

* Rebuild pdbsync indexes

Signed-off-by: gvenzl <[email protected]>

* Clean up fed blocks

Signed-off-by: gvenzl <[email protected]>

* Shrink CDB SYSTEM tablespace datafile

Signed-off-by: gvenzl <[email protected]>

* List Ruby packages users (#66)

Signed-off-by: gvenzl <[email protected]>

* Shrink 21c CDB TEMP datafile

Signed-off-by: gvenzl <[email protected]>

* Shrink 18c TEMP datafile

Signed-off-by: gvenzl <[email protected]>

* Remove OLAP library

Signed-off-by: gvenzl <[email protected]>

* Do not increase SGA_TARGET for 11g (fixes #71) (#72)

Oracle Database 11g XE is restricted to use no more than 1 GB of memory. The
fix for #64 sets the memory to 1.5 GB, so that the database fails to start with
the error:

ORA-47500: XE edition memory parameter invalid or not specified

* Update note for #72

Signed-off-by: gvenzl <[email protected]>

* ER #60: introduce container minimum memory check

Signed-off-by: gvenzl <[email protected]>

* ER #61: introduce container minimum memory check

Signed-off-by: gvenzl <[email protected]>

* Update utPLSQL references as per #77

Signed-off-by: gvenzl <[email protected]>

* Provide TDE setup script example as per #70

Signed-off-by: gvenzl <[email protected]>

* More solid fix for #64

Signed-off-by: gvenzl <[email protected]>

* Enhance documentation for secrets (#69)

Signed-off-by: gvenzl <[email protected]>

* Document HitHub Action container label usage (#81)

Signed-off-by: gvenzl <[email protected]>

* Fix doc bug for APP_USER

Signed-off-by: gvenzl <[email protected]>

* Add CREATE SYNONYM permission to APP_USER. (#94)

* Externalise script createAppUser (#103)

Closes #102

* Modularize app user creation

Signed-off-by: gvenzl <[email protected]>

* Update image users

Signed-off-by: gvenzl <[email protected]>

* Fix typo

Signed-off-by: gvenzl <[email protected]>

* Fix #104

Signed-off-by: gvenzl <[email protected]>

* Inlcude pam package for OS based auth (#57)

Signed-off-by: gvenzl <[email protected]>

* Generic fix for #64

Signed-off-by: gvenzl <[email protected]>

* Include 21-slim in backups

Signed-off-by: gvenzl <[email protected]>

* Pre-create container init folders (#108)

Signed-off-by: gvenzl <[email protected]>

* Enable Diag and Tuning packs (and EM Express) #112

Signed-off-by: gvenzl <[email protected]>

* Disable audit log

Signed-off-by: gvenzl <[email protected]>

* Update ImageDetails.md

Signed-off-by: gvenzl <[email protected]>

* Fix for #109

Signed-off-by: gvenzl <[email protected]>

* Reorder references

Signed-off-by: gvenzl <[email protected]>

* Update references

Signed-off-by: gvenzl <[email protected]>

* Document Apple M chips (#63)

Signed-off-by: gvenzl <[email protected]>

* Implemented --nowait (#119)

Signed-off-by: gvenzl <[email protected]>

* Fix missing link for colima install

Signed-off-by: gvenzl <[email protected]>

* Introduce faststart images ER #36

Signed-off-by: gvenzl <[email protected]>

* Introduce faststart images (ER #36)

Signed-off-by: gvenzl <[email protected]>

* Provide images on GHCR (ER #131)

Signed-off-by: gvenzl <[email protected]>

* fix #144

Signed-off-by: gvenzl <[email protected]>

* Include -faststart images in backup

Signed-off-by: gvenzl <[email protected]>

* Document recursive init scripts, make output a bit more readable

Signed-off-by: gvenzl <[email protected]>

* Fix #142, use default memory for BUILDKIT

Signed-off-by: gvenzl <[email protected]>

* #157: Futher specify faststart image use not being for persistency

Signed-off-by: gvenzl <[email protected]>

* Fix typo #168

Signed-off-by: gvenzl <[email protected]>

* #171 Allow mounting external volume for oradata subfolders (#172)

Signed-off-by: Loïc LEFEVRE <[email protected]>

* Fix #171: do not delete directory structure

Signed-off-by: gvenzl <[email protected]>

* Make init script against XE more prominent in README

Signed-off-by: gvenzl <[email protected]>

* Add 'find' utility for 11.2 build

Signed-off-by: gvenzl <[email protected]>

* Add details for enabling In-Memory Columnar processing on XE #188 (#189)

* 21c multiple layers

Signed-off-by: gvenzl <[email protected]>

* multiple layers faststart

Signed-off-by: gvenzl <[email protected]>

* Multiple layers 18c

Signed-off-by: gvenzl <[email protected]>

* Update faststart for 11g

Signed-off-by: gvenzl <[email protected]>

* harmonize Dockerfiles

Signed-off-by: gvenzl <[email protected]>

* multi-layer 11g

Signed-off-by: gvenzl <[email protected]>

* Use user- / group name for chown

Signed-off-by: gvenzl <[email protected]>

* Document -x buildContainerImage.sh parameter

Signed-off-by: gvenzl <[email protected]>

* use env vars instead of literal

Signed-off-by: gvenzl <[email protected]>

* Remove unnecessary timezone files

Signed-off-by: gvenzl <[email protected]>

* Remove unecessary binaries

Signed-off-by: gvenzl <[email protected]>

* Update ImageDetails with timezone files

Signed-off-by: gvenzl <[email protected]>

* Cleanup comments

Signed-off-by: gvenzl <[email protected]>

* Remove old timezone info 18c

Signed-off-by: gvenzl <[email protected]>

* Further remove binaries in 18c

Signed-off-by: gvenzl <[email protected]>

* Use 7z for data files uncompress

Signed-off-by: gvenzl <[email protected]>

* Don't shasum faststart image build

Signed-off-by: gvenzl <[email protected]>

* Run ORACLE_DATABASE case insensitive tests

Signed-off-by: gvenzl <[email protected]>

* Use docker.io login

Signed-off-by: gvenzl <[email protected]>

* Update Quarkus Reference

Signed-off-by: gvenzl <[email protected]>

* Migrate Benthos

Signed-off-by: gvenzl <[email protected]>

* Migrate Hibernate Reactive

Signed-off-by: gvenzl <[email protected]>

* Healthcheck PDB status for 18c+

Signed-off-by: gvenzl <[email protected]>

* Update resetPassword param documentation

Signed-off-by: gvenzl <[email protected]>

* Update Spring Data reference

Signed-off-by: gvenzl <[email protected]>

* Update .bash_profile variables

Signed-off-by: gvenzl <[email protected]>

* Backport healthcheck from Free images (#215)

Signed-off-by: gvenzl <[email protected]>

* Use XEPDB1 as default

Signed-off-by: gvenzl <[email protected]>

* Update jOOQ reference and 'sqlplus'

Signed-off-by: gvenzl <[email protected]>

* Fix #202, /oradata permissions

Signed-off-by: gvenzl <[email protected]>

* Provide user warning of old images

Signed-off-by: gvenzl <[email protected]>

* Update Ruby on Rails ActiveRecord user

Signed-off-by: gvenzl <[email protected]>

* Provide FREE,FREEPDB1 service names (ER #238)

Signed-off-by: Gerald Venzl <[email protected]>

* Update readme

Signed-off-by: Gerald Venzl <[email protected]>

* Update labels

Signed-off-by: Gerald Venzl <[email protected]>

* Fix for #57

Signed-off-by: Gerald Venzl <[email protected]>

* Upgrade 7zip

Signed-off-by: Gerald Venzl <[email protected]>

* Update ReadMe and docker startup script

Signed-off-by: Gerald Venzl <[email protected]>

---------

Signed-off-by: gvenzl <[email protected]>
Signed-off-by: Loïc LEFEVRE <[email protected]>
Signed-off-by: Gerald Venzl <[email protected]>
Co-authored-by: Daniel Haanpaa [Lab0] <[email protected]>
Co-authored-by: cedric-v3 <[email protected]>
Co-authored-by: Simon Potter <[email protected]>
Co-authored-by: Neil Crow <[email protected]>
Co-authored-by: Loïc LEFEVRE <[email protected]>
Co-authored-by: Loïc LEFEVRE <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

2 participants