wrote steps to install docker in readme and wrote a dockerfile for nginx not tested

This commit is contained in:
hugo gogo
2022-08-29 16:08:56 +02:00
parent a602a5d772
commit f86988a54a
8 changed files with 183 additions and 55 deletions

View File

@@ -0,0 +1,9 @@
server {
server_name localhost;
location / {
root /data/www;
}
location /images/ {
root /data;
}
}