Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hello,
I believe that if your default file is called index.html it should override the default Nginx index file.
If this is not the case, what you could do is create your own Nginx Config file and make the changes there, for example, you could change the index file there and set it to a custom one. It would look something like this:
index your_custom_index_here.html;
Then once you have your custom Nginx config ready you could copy the new config file to your Docker file you should have something like this:
...
RUN rm /etc/nginx/conf.d/default.conf
COPY your_config.conf /etc/nginx/conf.d/default.conf
...
Let me know how it goes! Regards, Bobby