Skip to content

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

Open
@rob975

Description

@rob975

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

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions