looking for a docker compose for gpodder backend server

I know there is a version for nextcloud that works really wel, but i am trying to move away from nextcloud 😀 Alsof, i am looking for an arm64 version

8 points · 3 comments · view on lemmy.world

3 Comments

darcmage@lemmy.world · 3 pts · 3y (1 reply)

podfetch seems to be coming along nicely. Can't see myself moving away from nextcloud anytime soon but it's nice to know there are alternatives. I use audiobookshelf for audiobooks but I found it lacking for podcast management functionality compared to antennapod.

upliftedduck@feddit.nl · 1 pts · 3y

Thanks, podfetch looks interesting, i'll check it out. I really like Nextcloud, until i want to run an update, then i like it... not so much

mr_nEJC@lemmy.world · 2 pts · 3y

I ran gPodder for a long time, but since finding audiobookshelf I didn't look back - runs fine on docker.

My docker-compose.yaml:

services:
  audiobookshelf:
    image: ghcr.io/advplyr/audiobookshelf:latest
    environment:
      - AUDIOBOOKSHELF_UID=1000
      - AUDIOBOOKSHELF_GID=1000
      - TZ=Europe/Ljubljana
    ports:
      - 13378:80
    volumes:
      - /volume1/media/audiobookshelf/podcasts:/podcasts
      - /etc/localtime:/etc/localtime:ro
    restart: unless-stopped