mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-23 08:01:00 +00:00
28 lines
724 B
YAML
28 lines
724 B
YAML
services:
|
|
podfetch:
|
|
image: "docker.io/samuel19982/podfetch:latest"
|
|
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
|