oracle19c-docker

(★ 131)

A docker container for running Oracle 19c - now with ARM support

File Explorer

  • .gitignore
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

colima

View Details ▼

Container runtimes for macOS and Linux with minimal setup.

colima start

Start the daemon in the background:

colima start --edit

Create a configuration file and use it:

colima start --runtime containerd

Start and setup containerd (install `nerdctl` to use containerd via `nerdctl`):

🔍

docker exec

View Details ▼

This command is an alias of `docker container exec`.

tldr docker container exec

View documentation for the original command:

🔍

docker ps

View Details ▼

This command is an alias of `docker container ls`.

tldr docker container ls

View documentation for the original command:

🔍

docker run

View Details ▼

This command is an alias of `docker container run`.

tldr docker container run

View documentation for the original command:

🔍

yes

View Details ▼

Output something repeatedly.
This command is commonly used to answer yes to every prompt by install commands (such as `apt-get`).

yes

Repeatedly output `y`:

yes {{value}}

Repeatedly output a specified value:

yes | sudo apt-get install {{program}}

Accept everything prompted by the `apt-get` command:

// repository documentation