🐳 chore: 支持自动部署

This commit is contained in:
imsyy 2024-01-17 15:07:51 +08:00
parent 3343f2b5db
commit b7260cf569
No known key found for this signature in database
GPG Key ID: 5D959EAB73CA095D
7 changed files with 611 additions and 390 deletions

46
.github/workflows/docker.yml vendored Normal file
View File

@ -0,0 +1,46 @@
name: Publish Docker image
on:
release:
types: [published]
jobs:
push_to_registry:
name: Push Docker image to multiple registries
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: |
imsyy/dailyhot-api
ghcr.io/${{ github.repository }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

View File

@ -1,4 +1,4 @@
FROM node:16-alpine FROM node:18-alpine
WORKDIR /app WORKDIR /app
COPY package*.json ./ COPY package*.json ./

View File

@ -117,6 +117,8 @@ pnpm start
docker build -t dailyhot-api . docker build -t dailyhot-api .
# 运行 # 运行
docker run -p 6688:6688 -d dailyhot-api docker run -p 6688:6688 -d dailyhot-api
# 或使用 Docker Compose
docker-compose up -d
``` ```
### 在线部署 ### 在线部署

12
docker-compose.yml Normal file
View File

@ -0,0 +1,12 @@
services:
DailyhotApi:
build:
context: .
image: dailyhot-api
container_name: dailyhot-api
volumes:
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
ports:
- 6688:6688
restart: always

View File

@ -27,7 +27,16 @@ app.use(
}), }),
); );
// CORS
app.use(async (ctx, next) => { app.use(async (ctx, next) => {
ctx.set("Access-Control-Allow-Origin", domain);
ctx.set("Access-Control-Allow-Methods", "GET, OPTIONS");
ctx.set("Access-Control-Allow-Headers", "Content-Type, Authorization");
ctx.set("Access-Control-Allow-Credentials", "true");
// 处理预检请求
if (ctx.method === "OPTIONS") {
ctx.status = 200;
} else {
if (domain === "*") { if (domain === "*") {
await next(); await next();
} else { } else {
@ -41,6 +50,7 @@ app.use(async (ctx, next) => {
}; };
} }
} }
}
}); });
// 使用路由中间件 // 使用路由中间件

View File

@ -1,6 +1,6 @@
{ {
"name": "dailyhot_api", "name": "dailyhot_api",
"version": "1.0.7", "version": "1.0.8",
"description": "An api on Today's Hot list", "description": "An api on Today's Hot list",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
@ -14,19 +14,19 @@
"author": "imsyy", "author": "imsyy",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"axios": "^1.3.4", "axios": "^1.6.3",
"cheerio": "1.0.0-rc.12", "cheerio": "1.0.0-rc.12",
"dotenv": "^16.0.3", "dotenv": "^16.3.1",
"eslint": "^8.48.0", "eslint": "^8.56.0",
"eslint-plugin-vue": "^9.17.0", "eslint-plugin-vue": "^9.19.2",
"koa": "^2.14.1", "koa": "^2.15.0",
"koa-bodyparser": "^4.3.0", "koa-bodyparser": "^4.4.1",
"koa-router": "^12.0.0", "koa-router": "^12.0.1",
"koa-static": "^5.0.0", "koa-static": "^5.0.0",
"koa-views": "^8.0.0", "koa-views": "^8.1.0",
"koa2-cors": "^2.0.6", "koa2-cors": "^2.0.6",
"node-cache": "^5.1.2", "node-cache": "^5.1.2",
"nodemon": "^2.0.22", "nodemon": "^2.0.22",
"prettier": "^3.0.2" "prettier": "^3.1.1"
} }
} }

File diff suppressed because it is too large Load Diff