Oracle XE installation on mac

Viewed 17

For school purposes I have to run an Oracle Database on a docker for that reason we got a step by step guide for it but its for Windows and the teacher has no idea how to help me and told me to find the answer by myself.

the guide:

  1. Go to https://github.com/oracle/docker-images.
  2. Download as ZIP, DO NOT UNPACK
  3. Open the ZIP with Explorer, Copy & Paste ...\docker-images-main.zip\docker-images-main\OracleDatabase\SingleInstance\dockerfiles\21.3.0 in a folder (e.g. Downloads)
  4. Open a CMD shell in this directory.
  5. docker build --force-rm=true --no-cache=true --build-arg DB_EDITION=xe -t oraxe21 -f Dockerfile.xe .
  6. docker run --name oraxe21_local -p 15210:1521 -p 55000:5500 -e ORACLE_PWD=Oraxe21 -v oracledb:/opt/oracle/oradata oraxe21**

up until step 8 it works fine but on step 9 I get this message

Unable to find image 'oraxe21:latest' locally
docker: Error response from daemon: pull access denied for oraxe21, repository does not exist or may require 'docker login': denied: requested access to the resource is denied.
See 'docker run --help'.

I am not sure how to solve this problem.

0 Answers
Related