Skip to content

Commit

Permalink
Upgrade to Oracle Database Free
Browse files Browse the repository at this point in the history
  • Loading branch information
gvenzl authored Jun 24, 2024
1 parent 04d1bc1 commit 05f562d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import { DbRunnerAbstract, DBRunnerContainerOptions } from './db-runner.abstract

export class OracleDBRunner extends DbRunnerAbstract {
public static startContainer(options: DBRunnerContainerOptions) {
const version = process.env.TEST_ORACLE_VERSION || options.version || '21.3.0';
const version = process.env.TEST_ORACLE_VERSION || options.version || '23.4.0';

const container = new GenericContainer(`gvenzl/oracle-xe:${version}`)
const container = new GenericContainer(`gvenzl/oracle-free:${version}`)
.withEnv('ORACLE_PASSWORD', 'test')
.withWaitStrategy(Wait.forLogMessage('DATABASE IS READY TO USE'))
.withExposedPorts(1521);
Expand Down

0 comments on commit 05f562d

Please sign in to comment.