add nginx
This commit is contained in:
1
nginx/.gitignore
vendored
Normal file
1
nginx/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
public/
|
||||||
11
nginx/docker-compose.yml
Normal file
11
nginx/docker-compose.yml
Normal 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
|
||||||
|
|
||||||
Reference in New Issue
Block a user