1
0
Fork 0
1Panel-Appstore/apps/bili-fetcher/latest/docker-compose.yml

38 lines
879 B
YAML

networks:
1panel-network:
external: true
services:
bili-fetcher-api:
image: qyg2297248353/bili-fetcher:latest
pull_policy: always
container_name: api-${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_API}:8899
volumes:
- ${BILI_FETCHER_ROOT_PATH}/config:/app/config
- ${BILI_FETCHER_ROOT_PATH}/output:/app/output
environment:
- TZ=Asia/Shanghai
- DOCKER_ENV=true
bili-fetcher-web:
image: qyg2297248353/bili-fetcher-web:latest
pull_policy: always
depends_on:
- bili-fetcher-api
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:80
environment:
- BACKEND_URL=http://bili-fetcher-api:8899
- TZ=Asia/Shanghai