adnanh / webhook-contrib

Repository for community contributed tools, files and helpers for http://github.com/adnanh/webhook

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker repo not found

mojtabye opened this issue · comments

Hi, I tried to pull image from docker hub but the image was not found :(
https://hub.docker.com/r/adnanh/webhook/

Unable to find image 'adnanh/webhook:latest' locally
docker: Error response from daemon: pull access denied for adnanh/webhook, repository does not exist or may require 'docker login'.

This example below is a Rancher-Compose. And it's working perfectly, it manages to download the image. You may be logged in to another Private Registry and maybe this is preventing you from using the Docker Hub.

version: '2'
services:
  almirWebhook:
    image: almir/webhook
    stdin_open: true
    working_dir: /var/scripts
    volumes:
    - scripts:/var/scripts/
    tty: true
    ports:
    - 9000:9000/tcp
    command:
    - -hooks
    - myhook.json
    - -verbose
    labels:
      io.rancher.container.pull_image: always