21 lines
636 B
YAML
21 lines
636 B
YAML
version: '3'
|
|
services:
|
|
chrome:
|
|
image: selenium/standalone-chrome
|
|
ports:
|
|
- "4444:4444"
|
|
volumes:
|
|
- /dev/shm:/dev/shm
|
|
|
|
reptile:
|
|
build: .
|
|
depends_on:
|
|
- chrome
|
|
environment:
|
|
- BASE_PAGE_URL=https://www.cbirc.gov.cn/cn/view/pages/ItemList.html?itemPId=923&itemId=4115&itemUrl=ItemListRightList.html&itemName=%E7%9B%91%E7%AE%A1%E5%B1%80%E5%88%86%E5%B1%80%E6%9C%AC%E7%BA%A7&itemsubPId=931&itemsubPName=%E8%A1%8C%E6%94%BF%E5%A4%84%E7%BD%9A#382
|
|
- BASE_URL=https://www.cbirc.gov.cn/cn/view/pages/
|
|
- DATE_LIMIT=2024-07-24
|
|
- OUTPUT_PATH_PREFIX=url
|
|
volumes:
|
|
- .:/reptile
|