Replies: 2 comments 3 replies
-
|
Hmm. It looks alright. Password and username match. What is the error you are getting? There must be something in the console. Do you see something in the web console? |
Beta Was this translation helpful? Give feedback.
-
|
Had time to check the logs now. Getting this error when it tries to add a podcast 2025-10-26T04:15:23 ❌ - IO error: Permission denied (os error 13) for path podcasts/Sleep Sounds - White Noise & Sleep Music from Calm Cove as core::future::future::Future>::poll |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm having a problem here, and I know it is because I am doing something wrong. I can get Podfetch up and running, can get into the UI, add new users and even connect antennapod to it for syncing, but I can't add any podcasts into Podfetch itself, so nothing really work the way it should.
version: '3.9'
services:
podfetch:
image: samuel19982/podfetch:latest
container_name: PodFetch
user: 1000:1000
ports:
- 5645:8000
volumes:
- /volume1/docker/podfetch/podcasts:/app/podcasts:rw
environment:
- POLLING_INTERVAL=300
- SERVER_URL=http://localhost:80
- DATABASE_URL=postgresql://postgres:changeme@postgres/podfetch
- GPODDER_INTEGRATION_ENABLED=true
- BASIC_AUTH=true
- USERNAME=*****
- PASSWORD=*****
restart: on-failure:5
postgres:
image: postgres:16
container_name: PodFetch-DB
security_opt:
- no-new-privileges:true
healthcheck:
test: ["CMD", "pg_isready", "-q", "-d", "podfetch", "-U", "postgres"]
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: changeme
POSTGRES_DB: podfetch
volumes:
- /volume1/docker/podfetch/db:/var/lib/postgresql/data:rw
restart: on-failure:5
Beta Was this translation helpful? Give feedback.
All reactions