Invalid login credentials
So I just recreated npm after factory resetting my nas, I created the following container and when I go to localhost:8080 and enter the correct listed credentials I cannot login. I am on a ugreen nas I'm unsure if there's anything special that needs to be done with this system but I could really use the help.
services:
nginx-proxy-manager:
image: jc21/nginx-proxy-manager
container_name: Nginx-Proxy-Manager
healthcheck:
test: timeout 10s bash -c ':> /dev/tcp/127.0.0.1/81' || exit 1
interval: 10s
timeout: 5s
retries: 3
start_period: 90s
volumes:
- /volume1/docker/npm/letsencrypt:/etc/letsencrypt:rw
- /volume1/docker/npm/data:/data:rw
- /volume1/docker/npm/config.json:/app/config/production.json
environment:
TZ: America/New_York
INITIAL_ADMIN_EMAIL: email
INITIAL_ADMIN_PASSWORD: password
ports:
- 443:443
- 81:81
- 80:80
restart: on-failure:5