Hosting a static configuration (nginx.conf) using Nginx on Oracle Cloud Kubernetes Cluster

Hi,

How to host a static configuration (nginx.conf) using Nginx on Oracle Cloud Kubernetes Cluster?

I only found one for Docker.

Here is the link:
https://hub.docker.com/_/nginx/

I tried it on Docker and this is my command:
docker run --name webhost-nginx -v C:/Users/GemberB/nginx/webhost-nginx/nginx.conf:/etc/nginx/nginx.conf:ro -d nginx

Syntax:
docker run --name -v /host/path/nginx.conf:/etc/nginx/nginx.conf:ro -d nginx

How can I convert it on a kubectl command?