mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-23 16:01:01 +00:00
28 lines
796 B
YAML
28 lines
796 B
YAML
services:
|
|
podfetch:
|
|
image: "docker.io/samuel19982/podfetch:v5.2.3@sha256:20d60e087e9c5af2bb1fd02c864140e358fa80ffb2532c6af253e705c0b897c0"
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: unless-stopped
|
|
user: "${PUID}:${PGID}"
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "${PANEL_APP_BIND_ADDRESS}:${PANEL_APP_PORT_HTTP}:8000"
|
|
environment:
|
|
- PORT=8000
|
|
- POLLING_INTERVAL=${POLLING_INTERVAL}
|
|
- DATABASE_URL=sqlite:///app/db/podcast.db
|
|
- PODFETCH_FOLDER=/app/podcasts
|
|
- BASIC_AUTH=${BASIC_AUTH}
|
|
- USERNAME=${PODFETCH_USERNAME}
|
|
- PASSWORD=${PODFETCH_PASSWORD}
|
|
volumes:
|
|
- "${PODCASTS_DIR}:/app/podcasts"
|
|
- "${DATABASE_DIR}:/app/db"
|
|
labels:
|
|
createdBy: Apps
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|