• 0 Posts
  • 55 Comments
Joined 3 years ago
cake
Cake day: July 7th, 2023

help-circle


  • The tier makes sense, if not the name. Google insists on including music streaming in Youtube Premium, and Premium Lite is a cheaper tier that doesn’t include music streaming. It’s missing some other features too, but it beats Premium for people who just want to not have ads and for some reason won’t use an ad blocker.

    This support page about Premium Lite says it has no ads on “most non-music content, excluding Shorts. Ads may appear when you search or browse”. Still having ads on music content makes sense given that Premium Lite doesn’t include music streaming.


  • ryper@lemmy.catoGames@lemmy.worldEnd of an era?
    link
    fedilink
    English
    arrow-up
    11
    arrow-down
    1
    ·
    edit-2
    17 days ago

    They also just announced that the PS3 and Vita Playstation Stores will be shutting down, starting next month in certain regions and everywhere by July 2027. At some point in the future it will be impossible to buy games for your old PS6 because it doesn’t support discs and the Playstation Store doesn’t support the system.






  • You could just build it yourself, there’s not much to it.

    Dockerfile:

    ARG VERSION=2
    
    FROM caddy:${VERSION}-builder AS builder
    
    RUN xcaddy build \
        --with github.com/caddy-dns/cloudflare
    
    FROM caddy:${VERSION}
    
    COPY --from=builder /usr/bin/caddy /usr/bin/caddy
    

    My Dockerfile is under dockerfile-dns and then in docker-compose.yaml instead of pointing to an image I have:

    services:
      caddy:
        build: ./dockerfile-dns
    

    I’m not 100% sure of the right way to update it, but I think I usually use something like docker compose build --pull --no-cache.