From 246317d84fcfca5ec4aaf7415bcf0f5889a9bfcd Mon Sep 17 00:00:00 2001 From: Brad Treloar Date: Wed, 16 Apr 2025 00:01:51 +0930 Subject: [PATCH] Move docker files into subdir --- Dockerfile => docker/Dockerfile | 2 -- install.sh => docker/install.sh | 0 nginx.conf => docker/nginx.conf | 0 notes.service => docker/notes.service | 0 passwd.sh => docker/passwd.sh | 0 5 files changed, 2 deletions(-) rename Dockerfile => docker/Dockerfile (77%) rename install.sh => docker/install.sh (100%) rename nginx.conf => docker/nginx.conf (100%) rename notes.service => docker/notes.service (100%) rename passwd.sh => docker/passwd.sh (100%) diff --git a/Dockerfile b/docker/Dockerfile similarity index 77% rename from Dockerfile rename to docker/Dockerfile index 61c57b2..94e2bf5 100644 --- a/Dockerfile +++ b/docker/Dockerfile @@ -7,5 +7,3 @@ COPY nginx.conf /etc/nginx/conf.d/auth.conf # Add user credentials. COPY nginx.htpasswd /etc/nginx/auth.htpasswd -# Copy the HTML files. -#COPY ./site /usr/share/nginx/html diff --git a/install.sh b/docker/install.sh similarity index 100% rename from install.sh rename to docker/install.sh diff --git a/nginx.conf b/docker/nginx.conf similarity index 100% rename from nginx.conf rename to docker/nginx.conf diff --git a/notes.service b/docker/notes.service similarity index 100% rename from notes.service rename to docker/notes.service diff --git a/passwd.sh b/docker/passwd.sh similarity index 100% rename from passwd.sh rename to docker/passwd.sh