Plankaban Raspberry Pi 4 Install - White Screen #328

Closed
opened 2026-02-04 18:33:19 +03:00 by OVERLORD · 1 comment
Owner

Originally created by @BloodshotPico on GitHub (Jun 8, 2023).

Hey there, I'm having a problem with installing this via a Raspberry Pi.

Below is my docker-compose.yml file.

version: '3'

services:
  planka:
    image: ghcr.io/plankanban/planka:latest
    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: unless-stopped
    volumes:
      - user-avatars:/app/public/user-avatars
      - project-background-images:/app/public/project-background-images
      - attachments:/app/private/attachments
    ports:
      - my port:1337
    environment:
      - BASE_URL=http://internal IP:my port
      - TRUST_PROXY=0
      - DATABASE_URL=postgresql://postgres@postgres/planka
      - SECRET_KEY=I did change this key :)

      # related: https://github.com/knex/knex/issues/2354
      # As knex does not pass query parameters from the connection string we
      # have to use environment variables in order to pass the desired values, e.g.
      # - PGSSLMODE=<value>

      # Configure knex to accept SSL certificates
      # - KNEX_REJECT_UNAUTHORIZED_SSL_CERTIFICATE=false
    depends_on:
      - postgres

  postgres:
    image: postgres:14-alpine
    restart: unless-stopped
    volumes:
      - db-data:/var/lib/postgresql/data
    environment:
      - POSTGRES_DB=planka
      - POSTGRES_HOST_AUTH_METHOD=trust

volumes:
  user-avatars:
  project-background-images:
  attachments:
  db-data:

And here is what I'm getting via the IP:Port URL I set.
image

It just sits on a white screen but has the Tab title of Planka so it's doing something, just not showing anymore content than this for some reason.

Any help would be greatly appreciated. :)

~Blood

Originally created by @BloodshotPico on GitHub (Jun 8, 2023). Hey there, I'm having a problem with installing this via a Raspberry Pi. Below is my docker-compose.yml file. ``` version: '3' services: planka: image: ghcr.io/plankanban/planka:latest 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: unless-stopped volumes: - user-avatars:/app/public/user-avatars - project-background-images:/app/public/project-background-images - attachments:/app/private/attachments ports: - my port:1337 environment: - BASE_URL=http://internal IP:my port - TRUST_PROXY=0 - DATABASE_URL=postgresql://postgres@postgres/planka - SECRET_KEY=I did change this key :) # related: https://github.com/knex/knex/issues/2354 # As knex does not pass query parameters from the connection string we # have to use environment variables in order to pass the desired values, e.g. # - PGSSLMODE=<value> # Configure knex to accept SSL certificates # - KNEX_REJECT_UNAUTHORIZED_SSL_CERTIFICATE=false depends_on: - postgres postgres: image: postgres:14-alpine restart: unless-stopped volumes: - db-data:/var/lib/postgresql/data environment: - POSTGRES_DB=planka - POSTGRES_HOST_AUTH_METHOD=trust volumes: user-avatars: project-background-images: attachments: db-data: ``` And here is what I'm getting via the IP:Port URL I set. ![image](https://github.com/plankanban/planka/assets/5675428/3c29bdff-2fe0-4f8d-ba43-ba3ea2eb165b) It just sits on a white screen but has the Tab title of Planka so it's doing something, just not showing anymore content than this for some reason. Any help would be greatly appreciated. :) ~Blood
Author
Owner

@BloodshotPico commented on GitHub (Jun 9, 2023):

I figured this out, I needed to use the internal device IP instead of my public IP.

@BloodshotPico commented on GitHub (Jun 9, 2023): I figured this out, I needed to use the internal device IP instead of my public IP.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/planka#328