15 lines
444 B
YAML
15 lines
444 B
YAML
services:
|
|
npm:
|
|
image: 'jc21/nginx-proxy-manager:latest'
|
|
container_name: npm
|
|
restart: unless-stopped
|
|
ports:
|
|
- '80:80'
|
|
- '81:81'
|
|
- '443:443'
|
|
volumes:
|
|
# Data lives at dockeruser's path — do NOT move these without a migration plan.
|
|
# Proxy hosts, SSL certs, and DB are stored here.
|
|
- /home/dockeruser/docker/npm/data:/data
|
|
- /home/dockeruser/docker/npm/letsencrypt:/etc/letsencrypt
|