Files
templates/blueprints/nginx/docker-compose.yml
Yogesh Manikkavasagam d09809c125 nginx template added (#309)
* nginx template added

nginx template added

* Update meta.json

* Update meta.json

* Update meta.json
2025-08-28 00:23:15 -06:00

14 lines
250 B
YAML

version: "3.8"
services:
nginx:
image: nginx:latest
restart: unless-stopped
ports:
- 80
- 443
volumes:
- nginx-config:/etc/nginx
- nginx-html:/usr/share/nginx/html
volumes:
nginx-config: {}
nginx-html: {}