Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pinchflat bootup Error #529

Closed
Shoaib5136 opened this issue Dec 29, 2024 · 2 comments
Closed

Pinchflat bootup Error #529

Shoaib5136 opened this issue Dec 29, 2024 · 2 comments
Assignees

Comments

@Shoaib5136
Copy link

image

My docker compose:
version: '3'
services:
pinchflat:
image: ghcr.io/kieraneglin/pinchflat:latest
environment:
# Set the timezone to your local timezone
- TZ=Asia/karachi
--user=99:100 #(Tried with 1000:1000 but no)
ports:
- '8945:8945'
volumes:
- /mnt/appdata/pinchflat/config:/config
- /mnt/media/Youtube:/downloads
restart: unless-stopped

How can I make it work?

@56k-modem
Copy link

56k-modem commented Dec 29, 2024

You have two unnecessary dashes (--) ahead of user. Try:

version: '3'
services:
  pinchflat:
    image: ghcr.io/kieraneglin/pinchflat:latest
    environment:
    # Set the timezone to your local timezone
      - TZ=Asia/Karachi
    user: '1000:1000'
    ports:
      - '8945:8945'
    volumes:
      - /mnt/appdata/pinchflat/config:/config
      - /mnt/media/Youtube:/downloads
    restart: unless-stopped

Also make sure you have the proper permissions for your /mnt/appdata/pinchflat and /mnt/media/Youtube directories.

@kieraneglin
Copy link
Owner

Thank you, @56k-modem!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants