Spyke

Syndicated from the fediverse. Read and engage on the original instance.

View original on feddit.nl
selfhostedยทSelfhostedbyupliftedduck

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

View original on feddit.nl
8

3 replies

lemmy.world

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.

3

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

1

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
2

You reached the end

looking for a docker compose for gpodder backend server | Spyke