0

I followed this guide to install Nginx Proxy Manager (NPM). When I try to create a stack, I get this error:

failed to deploy a stack: npm-db Pulling npm-app Pulling npm-app Error npm-db Error Error response from daemon: Get "https://registry-1.docker.io/v2/": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)

I understand that the solution might be in this post but how can I fix it in my case?

Abe
  • 391
  • 2
  • 20

1 Answers1

0
version: '3'
services:
  app:
    container_name: proxy
    image: jc21/nginx-proxy-manager:latest
    restart: unless-stopped
    ports:
      - '80:80'
      - '81:81'
      - '443:443'
    volumes:
      - data:/data
      - letsencrypt:/etc/letsencrypt
      
volumes:
  data: {}
  letsencrypt: {}
Emerson Pedroso
  • 181
  • 3
  • 13