19 lines
393 B
YAML
19 lines
393 B
YAML
services:
|
|
nginxpm:
|
|
image: 'jc21/nginx-proxy-manager:latest'
|
|
container_name: nginxpm
|
|
restart: unless-stopped
|
|
ports:
|
|
- 80:80
|
|
- 443:443
|
|
- 81:81
|
|
volumes:
|
|
- ./data:/data
|
|
- ./letsencrypt:/etc/letsencrypt
|
|
networks:
|
|
- nginx_net
|
|
|
|
networks:
|
|
nginx_net:
|
|
external: true
|