Nginx proxy manager docker compose: Difference between revisions

From wiki karavi
Jump to navigation Jump to search
No edit summary
 
Line 15: Line 15:
Bring up your stack by running
Bring up your stack by running
  docker-compose up -d
  docker-compose up -d
# If using docker-compose-plugin
docker compose up -d


Log in to the Admin UI
Log in to the Admin UI

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