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.