filebot / filebot-docker

Docker build files for FileBot
https://hub.docker.com/r/rednoah/filebot/
Apache License 2.0
55 stars 18 forks source link

Deployment Error - Unable to Deploy Stack #19

Open inkwell84 opened 8 months ago

inkwell84 commented 8 months ago

Getting the above error from Portainer when trying to deploy filebot node via the stack editor.

version: '3.3'
services:
  filebot-node:
    container_name: filebotnode
    image: rednoah/filebot:node
    restart: unless-stopped
    volumes:
      - /abcdefg/docker/filebotnode:/data
      - /abcdefg/media:/volume1
    ports:
      - 5452:5452
rednoah commented 8 months ago

Unfortunately, that error message is to vague to lead to a solution. Perhaps you can make Portainer give you more detailed error messages, console logs, etc.

As a last resort, you can always use docker to run docker containers, instead of Portainer or other tools that add complexity (and room for error) on top:

docker run --rm -it -v "$PWD:/volume1" -v data:/data -p 5452:5452 rednoah/filebot:node
inkwell84 commented 8 months ago

Any idea where I’d find logs etc in Portainer?

On Fri, Dec 29, 2023 at 07:52 Reinhard Pointner @.***> wrote:

Unfortunately, that error message is to vague to lead to a solution. Perhaps you can make Portainer give you more detailed error messages, console logs, etc.

As a last resort, you can always use docker to run docker containers, instead of Portainer or other tools that add complexity (and room for error) on top:

docker run --rm -it -v "$PWD:/volume1" -v data:/data -p 5452:5452 rednoah/filebot:node

— Reply to this email directly, view it on GitHub https://github.com/filebot/filebot-docker/issues/19#issuecomment-1872060290, or unsubscribe https://github.com/notifications/unsubscribe-auth/AMZ5V7MLLCXJBPCIZ4GJI2TYL24KFAVCNFSM6AAAAABBGJ7LVGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQNZSGA3DAMRZGA . You are receiving this because you authored the thread.Message ID: @.***>

rednoah commented 8 months ago

Unfortunately, I don't use Portainer.