[GH-ISSUE #232] Setup without using docker-compose? #202

Closed
opened 2026-02-26 06:31:27 +03:00 by kerem · 1 comment
Owner

Originally created by @Jxck-S on GitHub (Nov 8, 2019).
Original GitHub issue: https://github.com/NginxProxyManager/nginx-proxy-manager/issues/232

I'm using a Rock64 SBC that I and others can't get docker-compose working (tried all the install methods). I was wondering how I could set this up without compose. I've tried other unoffical nginx-proxy-manger forks with docker run but they don't support arm. Thanks!

Originally created by @Jxck-S on GitHub (Nov 8, 2019). Original GitHub issue: https://github.com/NginxProxyManager/nginx-proxy-manager/issues/232 I'm using a Rock64 SBC that I and others can't get docker-compose working (tried all the install methods). I was wondering how I could set this up without compose. I've tried other unoffical nginx-proxy-manger forks with docker run but they don't support arm. Thanks!
kerem 2026-02-26 06:31:27 +03:00
  • closed this issue
  • added the
    bug
    label
Author
Owner

@jc21 commented on GitHub (Nov 12, 2019):

Sure here's a basic command that only starts the service, not the database that it links to. Based on docker-compose example.

docker run -d --name npm \
  -p "80:80" \
  -p "81:81" \
  -p "443:443" \
  -v /full/path/to/config.json:/app/config/production.json \
  -v /full/path/to/data:/data \
  -v /full/path/to/letsencrypt:/etc/letsencrypt \
  jc21/nginx-proxy-manager:latest
<!-- gh-comment-id:552727538 --> @jc21 commented on GitHub (Nov 12, 2019): Sure here's a basic command that only starts the service, not the database that it links to. Based on [docker-compose example](https://github.com/jc21/nginx-proxy-manager/blob/master/doc/INSTALL.md). ```bash docker run -d --name npm \ -p "80:80" \ -p "81:81" \ -p "443:443" \ -v /full/path/to/config.json:/app/config/production.json \ -v /full/path/to/data:/data \ -v /full/path/to/letsencrypt:/etc/letsencrypt \ jc21/nginx-proxy-manager:latest ```
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/nginx-proxy-manager-NginxProxyManager#202
No description provided.