16 lines
397 B
YAML
Executable File
16 lines
397 B
YAML
Executable File
version: "3"
|
|
services:
|
|
app:
|
|
container_name: nginx-proxy-manager
|
|
image: "jc21/nginx-proxy-manager:latest"
|
|
restart: unless-stopped
|
|
ports:
|
|
# These ports are in format <host-port>:<container-port>
|
|
- "80:80" # Public HTTP Port
|
|
- "443:443" # Public HTTPS Port
|
|
- "81:81" # Admin Web Port
|
|
|
|
volumes:
|
|
- ./data:/data
|
|
- ./letsencrypt:/etc/letsencrypt
|