We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
gvenzl/oracle-xe
1 parent 2246e6c commit 63baad0Copy full SHA for 63baad0
.github/workflows/test.yml
@@ -31,11 +31,18 @@ jobs:
31
32
services:
33
oracle:
34
- image: quillbuilduser/oracle-18-xe
+ image: gvenzl/oracle-xe:latest
35
ports:
36
- 1521:1521
37
env:
38
TZ: Europe/Riga
39
+ ORACLE_PASSWORD: Oracle18
40
+ options: >-
41
+ --health-cmd healthcheck.sh
42
+ --health-interval 10s
43
+ --health-timeout 5s
44
+ --health-retries 10
45
+
46
steps:
47
- uses: actions/checkout@v2
48
- name: Set up Ruby
spec/support/unlock_and_setup_hr_user.sql
@@ -1,2 +1,3 @@
1
-alter user hr identified by hr account unlock;
+create user hr identified by hr;
2
+grant dba to hr;
3
grant execute on dbms_lock to hr;
0 commit comments