2020-03-11 06:54:10 +00:00
# Full Setup Instructions
2018-08-01 00:04:34 +00:00
2022-05-11 22:47:31 +00:00
### Running the App
2021-11-02 11:24:23 +00:00
2022-05-11 22:47:31 +00:00
Via `docker-compose` :
2021-11-02 11:24:23 +00:00
```yml
version: "3"
services:
app:
2022-05-11 22:47:31 +00:00
image: 'jc21/nginx-proxy-manager:v3-develop'
restart: always
2021-11-02 11:24:23 +00:00
ports:
2022-05-11 22:47:31 +00:00
# Public HTTP Port:
- '80:80'
# Public HTTPS Port:
- '443:443'
# Admin Web Port:
- '81:81'
environment:
# These run the processes and own the files
# for a specific user/group
- PUID=1000
- PGID=1000
2021-11-02 11:24:23 +00:00
# Uncomment this if IPv6 is not enabled on your host
# DISABLE_IPV6: 'true'
volumes:
- ./data:/data
```
Then:
```bash
docker-compose up -d
```
2022-05-11 22:47:31 +00:00
### Running on Raspberry PI / ARM devices
2018-08-01 00:04:34 +00:00
2020-02-19 04:55:06 +00:00
The docker images support the following architectures:
- amd64
- arm64
- armv7
2018-08-01 00:04:34 +00:00
2020-02-19 04:55:06 +00:00
The docker images are a manifest of all the architecture docker builds supported, so this means
2019-05-10 05:26:12 +00:00
you don't have to worry about doing anything special and you can follow the common instructions above.
2019-02-18 11:14:26 +00:00
2020-05-20 11:14:00 +00:00
Check out the [dockerhub tags ](https://hub.docker.com/r/jc21/nginx-proxy-manager/tags )
2019-05-10 05:26:12 +00:00
for a list of supported architectures and if you want one that doesn't exist,
2022-05-11 22:47:31 +00:00
[create a feature request ](https://github.com/jc21/nginx-proxy-manager/issues/new?assignees=&labels=enhancement&template=feature_request.md&title= ).
2019-05-10 05:26:12 +00:00
Also, if you don't know how to already, follow [this guide to install docker and docker-compose ](https://manre-universe.net/how-to-run-docker-and-docker-compose-on-raspbian/ )
on Raspbian.
2018-08-20 22:33:51 +00:00
2022-05-11 22:47:31 +00:00
### Initial Run
2018-08-20 22:33:51 +00:00
After the app is running for the first time, the following will happen:
2020-03-11 06:54:10 +00:00
1. The database will initialize with table structures
2. GPG keys will be generated and saved in the configuration file
2018-08-20 22:33:51 +00:00
This process can take a couple of minutes depending on your machine.