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.
1 parent 9e7cbb4 commit ad7356cCopy full SHA for ad7356c
.github/workflows/phpunit-oci.yml
@@ -40,7 +40,7 @@ env:
40
41
jobs:
42
phpunit-oci:
43
- runs-on: ubuntu-latest
+ runs-on: ubuntu-22.04
44
45
strategy:
46
matrix:
@@ -49,10 +49,24 @@ jobs:
49
50
services:
51
oracle:
52
- image: deepdiver/docker-oracle-xe-11g # 'wnameless/oracle-xe-11g-r2'
+ image: ghcr.io/gvenzl/oracle-xe:11
53
+
54
+ # Provide passwords and other environment variables to container
55
+ env:
56
+ ORACLE_RANDOM_PASSWORD: true
57
+ APP_USER: autotest
58
+ APP_USER_PASSWORD: owncloud
59
60
ports:
61
- 1521:1521/tcp
62
63
+ # Provide healthcheck script options for startup
64
+ options: >-
65
+ --health-cmd healthcheck.sh
66
+ --health-interval 10s
67
+ --health-timeout 5s
68
+ --health-retries 10
69
70
steps:
71
- name: Set app env
72
run: |
0 commit comments