Please make sure you have the deadline installer tar file for linux in the root of the repo
docker build -t deadline_client:10.2.0.9 .
docker volume create --driver local --opt type=nfs --opt o=addr=mull,rw --opt device=:/deadlineRepository10 deadline_volume
To run container you need to mount your repository to the container, if the repository is local to the machines its easy you can run the below
docker container run -d -p 8082:8082 -v /opt/Thinkbox/deadlineRepository10:/opt/Thinkbox/deadlineRepository10 deadline_client:10.2.0.9
To mount to network storage, please refer to the above volume building and run using
docker container run -d -p 8082:8082 -v deadline_volume:/opt/Thinkbox/deadlineRepository10 deadline_client:10.2.0.9