-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
240 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
node_modules | ||
.git | ||
.gitignore | ||
*.md | ||
dist | ||
.env | ||
.next | ||
.DS_Store |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
name: Build WeWeRSS Server images and push image to docker hub | ||
on: | ||
workflow_dispatch: | ||
push: | ||
paths: | ||
- "apps/**" | ||
- "Dockerfile" | ||
tags: | ||
- "v*.*.*" | ||
jobs: | ||
build-images: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
- name: Install Dependencies | ||
run: | | ||
sudo apt update && sudo apt install -y nodejs npm | ||
- name: Set up QEMU (optional) | ||
uses: docker/setup-qemu-action@v2 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
with: | ||
driver-opts: network=host | ||
- name: Cache Docker layers | ||
uses: actions/cache@v2 | ||
with: | ||
path: /tmp/.buildx-cache | ||
key: ${{ runner.os }}-buildx-${{ github.sha }} | ||
restore-keys: | | ||
${{ runner.os }}-buildx- | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Set DOCKER_REPO_TAGGED based on branch or tag | ||
run: | | ||
if [[ "${{ github.ref_name }}" == "main" ]]; then | ||
echo "DOCKER_REPO_TAGGED=ghcr.io/${{ github.repository_owner }}/wewe-rss-server:latest" >> $GITHUB_ENV | ||
else | ||
echo "DOCKER_REPO_TAGGED=ghcr.io/${{ github.repository_owner }}/wewe-rss-server:${{ github.ref_name }}" >> $GITHUB_ENV | ||
fi | ||
- name: Build and publish image for main branch or tag push event | ||
env: | ||
DOCKER_REPO_TAGGED: ${{ env.DOCKER_REPO_TAGGED }} | ||
run: | | ||
docker buildx build \ | ||
--build-arg name=app \ | ||
--platform linux/amd64,linux/arm64 \ | ||
--label "org.opencontainers.image.source=https://github.com/${{ github.repository_owner }}/wewe-rss-server" \ | ||
--label "org.opencontainers.image.description=wewe-rss server image" \ | ||
--push \ | ||
--target server \ | ||
--cache-from=type=local,src=/tmp/.buildx-cache \ | ||
--cache-to=type=local,dest=/tmp/.buildx-cache \ | ||
-t ${DOCKER_REPO_TAGGED} \ | ||
-f Dockerfile \ | ||
. | ||
push-to-docker-hub: | ||
needs: build-images | ||
runs-on: ubuntu-20.04 | ||
if: github.repository == 'cooderl/wewe-rss-server' | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_HUB_NAME }} | ||
password: ${{ secrets.DOCKER_HUB_PASSWORD }} | ||
- name: Set DOCKER_REPO_TAGGED based on branch or tag | ||
run: | | ||
if [[ "${{ github.ref_name }}" == "main" ]]; then | ||
echo "IMAGE_TAG=latest" >> $GITHUB_ENV | ||
else | ||
echo "IMAGE_TAG=${{ github.ref_name }}" >> $GITHUB_ENV | ||
fi | ||
- name: Pull image from GitHub Container Registry | ||
run: docker pull ghcr.io/${{ github.repository_owner }}/wewe-rss-server:${{env.IMAGE_TAG}} | ||
- name: Tag image with Docker Hub repository name and version tag | ||
run: docker tag ghcr.io/${{ github.repository_owner }}/wewe-rss-server:${{env.IMAGE_TAG}} ${{ github.repository_owner }}/wewe-rss-server:${{env.IMAGE_TAG}} | ||
- name: Push image to Docker Hub | ||
run: docker push ${{ github.repository_owner }}/wewe-rss-server:${{env.IMAGE_TAG}} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
name: Build WeWeRSS Web images and push image to docker hub | ||
on: | ||
workflow_dispatch: | ||
push: | ||
paths: | ||
- "apps/**" | ||
- "Dockerfile" | ||
tags: | ||
- "v*.*.*" | ||
jobs: | ||
build-images: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
- name: Install Dependencies | ||
run: | | ||
sudo apt update && sudo apt install -y nodejs npm | ||
- name: Set up QEMU (optional) | ||
uses: docker/setup-qemu-action@v2 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
with: | ||
driver-opts: network=host | ||
- name: Cache Docker layers | ||
uses: actions/cache@v2 | ||
with: | ||
path: /tmp/.buildx-cache | ||
key: ${{ runner.os }}-buildx-${{ github.sha }} | ||
restore-keys: | | ||
${{ runner.os }}-buildx- | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Set DOCKER_REPO_TAGGED based on branch or tag | ||
run: | | ||
if [[ "${{ github.ref_name }}" == "main" ]]; then | ||
echo "DOCKER_REPO_TAGGED=ghcr.io/${{ github.repository_owner }}/wewe-rss-web:latest" >> $GITHUB_ENV | ||
else | ||
echo "DOCKER_REPO_TAGGED=ghcr.io/${{ github.repository_owner }}/wewe-rss-web:${{ github.ref_name }}" >> $GITHUB_ENV | ||
fi | ||
- name: Build and publish image for main branch or tag push event | ||
env: | ||
DOCKER_REPO_TAGGED: ${{ env.DOCKER_REPO_TAGGED }} | ||
run: | | ||
docker buildx build \ | ||
--build-arg name=app \ | ||
--platform linux/amd64,linux/arm64 \ | ||
--label "org.opencontainers.image.source=https://github.com/${{ github.repository_owner }}/wewe-rss-web" \ | ||
--label "org.opencontainers.image.description=wewe-rss web image" \ | ||
--push \ | ||
--target web \ | ||
--cache-from=type=local,src=/tmp/.buildx-cache \ | ||
--cache-to=type=local,dest=/tmp/.buildx-cache \ | ||
-t ${DOCKER_REPO_TAGGED} \ | ||
-f Dockerfile \ | ||
. | ||
push-to-docker-hub: | ||
needs: build-images | ||
runs-on: ubuntu-20.04 | ||
if: github.repository == 'cooderl/wewe-rss-web' | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_HUB_NAME }} | ||
password: ${{ secrets.DOCKER_HUB_PASSWORD }} | ||
- name: Set DOCKER_REPO_TAGGED based on branch or tag | ||
run: | | ||
if [[ "${{ github.ref_name }}" == "main" ]]; then | ||
echo "IMAGE_TAG=latest" >> $GITHUB_ENV | ||
else | ||
echo "IMAGE_TAG=${{ github.ref_name }}" >> $GITHUB_ENV | ||
fi | ||
- name: Pull image from GitHub Container Registry | ||
run: docker pull ghcr.io/${{ github.repository_owner }}/wewe-rss-web:${{env.IMAGE_TAG}} | ||
- name: Tag image with Docker Hub repository name and version tag | ||
run: docker tag ghcr.io/${{ github.repository_owner }}/wewe-rss-web:${{env.IMAGE_TAG}} ${{ github.repository_owner }}/wewe-rss-web:${{env.IMAGE_TAG}} | ||
- name: Push image to Docker Hub | ||
run: docker push ${{ github.repository_owner }}/wewe-rss-web:${{env.IMAGE_TAG}} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
public-hoist-pattern[]=*@nextui-org/* | ||
engine-strict=true | ||
deploy-all-files=true |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
FROM node:20-alpine AS base | ||
ENV PNPM_HOME="/pnpm" | ||
ENV PATH="$PNPM_HOME:$PATH" | ||
|
||
RUN npm i -g pnpm | ||
|
||
FROM base AS build | ||
COPY . /usr/src/app | ||
WORKDIR /usr/src/app | ||
|
||
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile | ||
|
||
RUN pnpm run -r build | ||
|
||
RUN pnpm deploy --filter=web --prod /app/web | ||
|
||
RUN pnpm deploy --filter=server --prod /app/server | ||
RUN cd /app/server && pnpm exec prisma generate | ||
|
||
|
||
|
||
|
||
FROM base AS web | ||
COPY --from=build /app/web /app/web | ||
|
||
WORKDIR /app/web | ||
|
||
EXPOSE 3000 | ||
|
||
ENV NODE_ENV=production | ||
ENV NEXT_PUBLIC_SERVER_ORIGIN_URL="" | ||
ENV NEXT_PUBLIC_ENV=prod | ||
|
||
CMD [ "npm", "run", "start" ] | ||
|
||
|
||
|
||
|
||
FROM base AS server | ||
COPY --from=build /app/server /app/server | ||
|
||
WORKDIR /app/server | ||
|
||
EXPOSE 4000 | ||
|
||
ENV NODE_ENV=production | ||
ENV HOST="0.0.0.0" | ||
ENV SERVER_ORIGIN_URL="" | ||
ENV MAX_REQUEST_PER_MINUTE=60 | ||
ENV AUTH_CODE="" | ||
ENV DATABASE_URL="" | ||
|
||
CMD [ "npm", "run", "start:migrate:prod" ] |
This file contains 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
This file contains 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