Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)PU
Posts
0
Comments
71
Joined
2 yr. ago

  • He's a unscrupulous grifter that was in it for the money from day one

    Yeah, the Sandy hook story was bringing in millions of dollars. He knew very well what he was doing and he kept at it because he only cared for his personal gain. He's a huge piece of shit.

  • Extensions installed on any browser make your fingerprint more unique. For PC your best option against fingerprinting would probably be using n unmodified mullvad browser, and on android, mull, with the least extensions posible.

  • Such a waste of talent!

    I just heard a podcast from 'better offline' titled 'how managers are breaking the internet' and he calls these kinds of things 'the rot economy', kind of like enshitification but it happens when some completely disconnected suit takes over projects from passionate developers and brings the whole thing to the ground with their 'line must go up' mentality.

    I'd say it's exactly whats happening here.

  • I've played shredders revenge on my deck with 4 players via remote play together and had no issues whatsoever.

    Each player was using he's own controller to play. What was your problem exactly?

    You have to use the Remote play together interface to map the player controllers to the local controllers 1 through 4, but that's it.

  • Ah! now I see the problem

    permission denied, mkdir 'upload/library'

    It's clearly having permission problems with the image library directory.

    Also:

     
            volumes:
         - /mnt/NAS-immich-folder:/mnt/immich
         - ${UPLOAD_LOCATION}:/mnt/immich
    
      

    with this command you are trying to mount this directory from your LXC machine:

    /mnt/NAS-immich-folder

    into this directory inside the immich container:

    /mnt/immich

    And then you also try to mount a second directory there in the next line. But immich doesn't use /mnt/immich for its library, it uses this:

    /usr/src/app/upload

    You should NOT edit the default docker-compose.yml file. Instead you should only edit the .env file like so:

    UPLOAD_LOCATION=/mnt/NAS-immich-folder

    I can also see that there's a specific tutorial on how to set it up with portainer. In that case you might have to edit the docker compose file to replace .env with stack.env and place the contents of the env file in the advanced-> environment variables of portainer.

    Try these things and ask here again if you can't get it running.