Error while installing oracle database

docker run -d -p 49160:22 -p 49161:1521 deepdiver/oracle-xe-11g
Unable to find image ‘deepdiver/oracle-xe-11g:latest’ locally
docker: Error response from daemon: pull access denied for deepdiver/oracle-xe-11g, repository does not exist or may require ‘docker login’: denied: requested access to the resource is denied.
See ‘docker run --help’.

I tried to search for the solution on web but not many resources. If some one can help would be very thankfull!

The (repo for the) image is called: deepdiver/docker-oracle-xe-11g
Are you aware that it will always create a database:

create user autotest identified by owncloud;

alter user autotest default tablespace users

temporary tablespace temp

quota unlimited on users;

grant create session, create table, create procedure, create sequence, create trigger, create view, create synonym, alter session to autotest;

quit;
/

If you just want to use a xe11g, I would strongly advise to use another image, like wnameless/oracle-xe-11g-r2 which does not automaticly create unwanted a user/tabespace…