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.
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
Latest free image fails to start using podman on GitHub Actions with the error:
Password: su: Authentication failure
It works fine with docker.
23.6 image worked with podman too.
This is the test I used:
jobs: test-oracle-free: strategy: fail-fast: false matrix: tag: [23.6.0.0-lite, latest-lite] runtime: [docker, podman] runs-on: ubuntu-latest steps: - run: >- ${{ matrix.runtime }} run -d --name oracle-db container-registry.oracle.com/database/free:${{ matrix.tag }} - run: sleep 60 - run: | echo "::group::Logs" ${{ matrix.runtime }} logs oracle-db echo "::endgroup::" status=$(${{ matrix.runtime }} inspect -f "{{.State.Status}}" oracle-db) [[ $status = "running" ]] && exit 0 || exit 1
The text was updated successfully, but these errors were encountered:
Working on this.
Sorry, something went wrong.
I updated the workflow to include arm runners:
jobs: test-oracle-free: strategy: fail-fast: false matrix: tag: [23.6.0.0-lite, latest-lite] runtime: [docker, podman] os: [ubuntu-latest, ubuntu-24.04-arm] runs-on: ${{ matrix.os }} steps: - name: run container run: >- ${{ matrix.runtime }} run -d --name oracle-db container-registry.oracle.com/database/free:${{ matrix.tag }} - name: wait for alert.log tail run: | retry=1 until { ${{ matrix.runtime }} logs oracle-db 2>/dev/null | grep -q "^The following .* tail .* alert\.log:$"; } || [ $retry -gt 30 ]; do sleep 5 ((retry++)) done - name: test database is ready run: | echo "::group::Logs" ${{ matrix.runtime }} logs oracle-db echo "::endgroup::" { ${{ matrix.runtime }} logs oracle-db 2>/dev/null | grep -q "^DATABASE IS READY TO USE!$"; } && exit 0 || exit 1
Non-working combinations are:
So latest container image runs fine on Ubuntu 24.04 and ARM architecture.
mani-mp
No branches or pull requests
Latest free image fails to start using podman on GitHub Actions with the error:
It works fine with docker.
23.6 image worked with podman too.
This is the test I used:
The text was updated successfully, but these errors were encountered: