Nginx proxy manager docker compose: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
|  (Created page with "Create a docker-compose.yml file similar to this:  services:   app:     image: 'jc21/nginx-proxy-manager:latest'     restart: unless-stopped     ports:       - '80:80'       - '81:81'       - '443:443'     volumes:       - ./data:/data       - ./letsencrypt:/etc/letsencrypt   Bring up your stack by running  docker-compose up -d  # If using docker-compose-plugin  docker compose up -d") | No edit summary | ||
| (2 intermediate revisions by the same user not shown) | |||
| Line 16: | Line 16: | ||
|   docker-compose up -d |   docker-compose up -d | ||
| Log in to the Admin UI | |||
|   http://127.0.0.1:81 | |||
| Default Admin User: | |||
|  Email:    admin@example.com | |||
|  Password: changeme | |||
Latest revision as of 09:15, 25 April 2025
Create a docker-compose.yml file similar to this:
services:
 app:
   image: 'jc21/nginx-proxy-manager:latest'
   restart: unless-stopped
   ports:
     - '80:80'
     - '81:81'
     - '443:443'
   volumes:
     - ./data:/data
     - ./letsencrypt:/etc/letsencrypt
Bring up your stack by running
docker-compose up -d
Log in to the Admin UI
http://127.0.0.1:81
Default Admin User:
Email: admin@example.com Password: changeme