From ba42b2b30ad96d5d24698adf4cb1c285007c247d Mon Sep 17 00:00:00 2001 From: lenape Date: Thu, 8 May 2025 01:09:01 +0000 Subject: [PATCH] updated dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e917da4..f6d1c75 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ FROM nginxproxy/nginx-proxy:1.6 -# Create a directory within the container to hold your custom configuration -RUN mkdir -p /etc/nginx/custom + + # Copy your external configuration file into the container -COPY your_config_file.conf /etc/nginx/custom/ +COPY custom_nginx.conf /etc/nginx/nginx.conf # Optionally, you might need to adjust the Nginx configuration to include your custom file. # This depends on how you want to integrate your configuration.