Sign inSign up

georgmoser/oracle-db-client

By georgmoser

Updated almost 7 years ago

Docker oracle database client

Image
0

453

georgmoser/oracle-db-client repository overview

Oracle Database Client

can be used for remote database operations.

How to run

Usage:

The container accepts the following mounted folder:

  • "/data" --> mount the folder where all output should be written to here
Environment Variables
  • DB_USERNAME: username for connection
  • DB_PASSWORT: password for connection
  • DB_PORT: database port (default: 1521)
  • DB_HOST: database host name
  • DB_SERVICENAME: database service name
Opening a Shell:

Run the container with:

docker run  \
    --name oracle-db-client \
    -it \
    -v /path/to/local/data:/data \
    georgmoser/oracle-db-client
Dumping a Database:

Run the container with:

docker run  \
    --name oracle-db-client \
    -it \
    -e DB_USERNAME= \
    -e DB_PASSWORT= \
    -e DB_PORT= \
    -e DB_HOST= \
    -e DB_SERVICENAME= \    
    -v /path/to/local/data:/data \
    georgmoser/oracle-db-client
    dump [[YOUR_ARGUMENTS (e.g. 'FULL=yes')]]

Tag summary

Content type

Image

Digest

Size

203.9 MB

Last updated

almost 7 years ago

docker pull georgmoser/oracle-db-client