Skip to content

Latest Oracle Database 23ai Free image not working with podman on GitHub Actions #2925

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

Open
rob975 opened this issue Feb 24, 2025 · 1 comment
Assignees
Labels

Comments

@rob975
Copy link

rob975 commented Feb 24, 2025

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
@mani-mp
Copy link

mani-mp commented Apr 1, 2025

Working on this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants