skip to main content
Run Nginx in Docker
Assuming the Nginx configuration file is saved in your home directory as my_k8s_lb.conf, start Nginx on the load balancer host by running the following Docker command:
docker run --ulimit nofile=130048:130048 \
--net=host \
-v ~/my_k8s_lb.conf:/etc/nginx/nginx.conf \
--restart=always \
--name=nginx \
-d nginx:latest
Once ICE Server is installed, you can login using the load balancer's IP address (non-https) or FQDN name (https).