|
|
@@ -0,0 +1,13 @@
|
|
|
+---
|
|
|
+services:
|
|
|
+ nginx:
|
|
|
+ image: nginx:1.25.5-alpine
|
|
|
+ container_name: nginx
|
|
|
+ ports:
|
|
|
+ - 80:80
|
|
|
+ - 443:443
|
|
|
+ volumes:
|
|
|
+ - ./config/nginx.conf:/etc/nginx/nginx.conf
|
|
|
+ - ./certs:/etc/nginx/certs
|
|
|
+ - ./data:/usr/share/nginx/html
|
|
|
+ restart: unless-stopped
|