docker-entrypoint.sh - Path Unknown #372

Closed
opened 2025-10-09 18:45:26 +03:00 by OVERLORD · 2 comments
Owner

Originally created by @SkyLostTR on GitHub.

failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: exec: "docker-entrypoint.sh": executable file not found in $PATH: unknown

I am having this on arm64 Synology NAS. I guess that's a problem with the paths?

Docker-Compose:

version: '3.9'
services:
  planka:
    image: ghcr.io/plankanban/planka:latest
    container_name: Planka
    command: >
      bash -c
        "for i in `seq 1 30`; do
          ./start.sh &&
          s=$$? && break || s=$$?;
          echo \"Tried $$i times. Waiting 5 seconds...\";
          sleep 5;
        done; (exit $$s)"
    restart: on-failure:5
    volumes:
      - /volume1/docker/planka/avatars:/app/public/user-avatars
      - /volume1/docker/planka/images:/app/public/project-background-images
      - /volume1/docker/planka/files:/app/private/attachments
    ports:
      - 3617:1337
    environment:
      - BASE_URL=https://planka.XXXX
      - TRUST_PROXY=0
      - DATABASE_URL=postgresql://postgres@postgres/planka
      - SECRET_KEY=XXXXXX
      - DEFAULT_ADMIN_EMAIL=yourown@email
      - DEFAULT_ADMIN_PASSWORD=XXXX
      - DEFAULT_ADMIN_NAME=XXX
      - DEFAULT_ADMIN_USERNAME=XXXX
      - NODE_ENV=production
    depends_on:
      - postgres

  postgres:
    image: postgres
    container_name: Planka-DB
    restart: on-failure:5
    volumes:
      - /volume1/docker/planka/db:/var/lib/postgresql/data:rw
    environment:
      - POSTGRES_DB=planka
      - POSTGRES_HOST_AUTH_METHOD=trust
Originally created by @SkyLostTR on GitHub. `failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: exec: "docker-entrypoint.sh": executable file not found in $PATH: unknown` ### I am having this on arm64 Synology NAS. I guess that's a problem with the paths? **_Docker-Compose:_** ``` version: '3.9' services: planka: image: ghcr.io/plankanban/planka:latest container_name: Planka command: > bash -c "for i in `seq 1 30`; do ./start.sh && s=$$? && break || s=$$?; echo \"Tried $$i times. Waiting 5 seconds...\"; sleep 5; done; (exit $$s)" restart: on-failure:5 volumes: - /volume1/docker/planka/avatars:/app/public/user-avatars - /volume1/docker/planka/images:/app/public/project-background-images - /volume1/docker/planka/files:/app/private/attachments ports: - 3617:1337 environment: - BASE_URL=https://planka.XXXX - TRUST_PROXY=0 - DATABASE_URL=postgresql://postgres@postgres/planka - SECRET_KEY=XXXXXX - DEFAULT_ADMIN_EMAIL=yourown@email - DEFAULT_ADMIN_PASSWORD=XXXX - DEFAULT_ADMIN_NAME=XXX - DEFAULT_ADMIN_USERNAME=XXXX - NODE_ENV=production depends_on: - postgres postgres: image: postgres container_name: Planka-DB restart: on-failure:5 volumes: - /volume1/docker/planka/db:/var/lib/postgresql/data:rw environment: - POSTGRES_DB=planka - POSTGRES_HOST_AUTH_METHOD=trust ```
OVERLORD added the help wanted label 2025-10-09 18:45:26 +03:00
Author
Owner

@SkyLostTR commented on GitHub:

Try to manually pull the docker image before starting the container docker pull ghcr.io/plankanban/planka:latest.

Additionally check whats happening if you remove your startup command.

Thanks for the help. I will try and update you.

@SkyLostTR commented on GitHub: > Try to manually pull the docker image before starting the container `docker pull ghcr.io/plankanban/planka:latest`. > > Additionally check whats happening if you remove your startup command. Thanks for the help. I will try and update you.
Author
Owner

@HannesOberreiter commented on GitHub:

Try to manually pull the docker image before starting the container docker pull ghcr.io/plankanban/planka:latest.

Additionally check whats happening if you remove your startup command.

@HannesOberreiter commented on GitHub: Try to manually pull the docker image before starting the container `docker pull ghcr.io/plankanban/planka:latest`. Additionally check whats happening if you remove your startup command.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/planka#372