infra/compose/nginx.yml

17 lines
328 B
YAML
Raw Normal View History

2024-09-09 00:01:47 -06:00
services:
app:
2024-09-17 01:08:33 -06:00
image: "jc21/nginx-proxy-manager:latest"
2024-09-09 00:01:47 -06:00
restart: unless-stopped
ports:
2024-09-17 01:08:33 -06:00
- "80:80" # Public HTTP Port
- "443:443" # Public HTTPS Port
- "81:81" # Admin Web Port
networks:
- proxy
2024-09-09 00:01:47 -06:00
volumes:
- ./data:/data
2024-09-17 01:08:33 -06:00
- ./letsencrypt:/etc/letsencrypt
networks:
proxy: