Created docker compose for nginx.

This commit is contained in:
K
2025-09-19 10:43:20 +05:30
parent d54ecd2323
commit 7a8b8222fc
+15
View File
@@ -0,0 +1,15 @@
services:
nginx:
image: nginx:stable-perl
container_name: nginx
restart: no
ports:
- "8080:80"
environment:
- NGINX_PORT=80
networks:
- nginx
networks:
nginx:
driver: bridge