diff --git a/nginx/docker-compose.yml b/nginx/docker-compose.yml new file mode 100644 index 0000000..9f59e8a --- /dev/null +++ b/nginx/docker-compose.yml @@ -0,0 +1,13 @@ +--- +services: + nginx: + restart: always + image: nginx:latest +# network_mode: host + ports: + - 80:80 + - 443:443 + volumes: +# - ./nginx/nginx.conf:/etc/nginx/nginx.conf + - ./nginx/default.conf:/etc/nginx/conf.d/default.conf + - ./nginx/certs:/etc/nginx/certs