Failed to mount volume in docker

Hello everyone:

I am trying to install an application called osticket in docker, when trying to mount the db in the volume it does not allow me to do so and returns an error indicating the following: Cannot
find image ‘osticket:1.0’ locally
docker: Daemon error response: throw access denied for osticket, repository does not exist or may require a ‘docker login’: denied: The requested access to the resource is denied.
See ‘docker run --help’.

The commands that execute and return the message above are the following:

sudo docker run -d --name ost-man-app
-p 9090:80
–mount ‘type=volume,src=ost-man-arch,dst=/var/www/html’
-e DB_PASSWORD=“ost_pass”
-e DB_NAME=“osticket”
-e DB_USER=“ost_user”
-e DB_HOST=“ost-man-db”
osticket:1.0

I share the volumes that I already have generated:
DRIVER VOLUME NAME
local ost-man-arch
local ost-man-vol

I have this image on myhost:
REPOSITORY TAG IMAGE ID CREATED SIZE
mysql 5.5.62 d404d78aa797 4 years ago 205MB

This wrapper is the one I generated for this very application:
CONTAINER ID IMAGE COMMAND CREATED STATUS PORT NAMES

73d6dfde34bb mysql:5.5.62 “docker-entrypoint.s…” 2 hours ago Upload 2 hours 0.0.0.0:3307->3306/tcp, :::3307->3306/tcp ost-man-db Can you help me
find the problem please.

I thank you in advance for your support

Means the image is not in your local image cache

Either means the image is not public and you need credentials, or the repository does not exist.

There are plenty of osticket images on docker hub, but all of them require a repo name: Docker

So I am afraid your problem is not a problem with a failed volume mount, but rather is with using an non-existing repository and tag.