add nginx

This commit is contained in:
Chris
2022-11-02 18:13:37 +01:00
parent 97d7d88897
commit 3e962c6c94
2 changed files with 12 additions and 0 deletions

1
nginx/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
public/

11
nginx/docker-compose.yml Normal file
View File

@@ -0,0 +1,11 @@
version: '3.7'
services:
nginx:
image: nginx:stable-alpine
restart: unless-stopped
ports:
- "8080:80"
volumes:
- ./public:/usr/share/nginx/html