feat(build): 在armhf设备(树莓派)上使用Docker方式构建运行RSSHub#2020
Merged
DIYgod merged 22 commits intoDIYgod:masterfrom Apr 29, 2019
Merged
Conversation
let list = $('.co_content8 table tr').get();
list.splice(0, 1);
原因如下:
页面内含有两个 .co_content8 table
仅第一个 table内 第一个 tr 元素是广告
const list = $('.co_content8 table tr:not(:first-child)').get();
会丢失第二个table的第一个tr元素
update the fork
pull to latest
pull to latest
pull to latest
# Conflicts: # lib/router.js
pull to the latest
Collaborator
|
@junfengP 直接镜像加个标签 rsshub:arm 比较合适吧 |
Contributor
Author
谢谢提议,已改。 # 直接拉取镜像方式,还未使用CI,更新缓慢
$ docker run -d --name rsshub -p 1200:1200 pjf1996/rsshub:arm32v7
# 自己构建镜像方式
$ git clone https://github.com/DIYgod/RSSHub.git
$ cd RSSHub
$ docker build -f ./Dockerfile.arm32v7 -t rsshub:arm32v7 .
$ docker run -d --name rsshub -p 1200:1200 rsshub:arm32v7 |
DIYgod
approved these changes
Apr 29, 2019
Owner
|
Merged, thanks! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
关联 #1988