Skip to content

Commit

Permalink
chore: 支持 Docker 部署 (#1195) (#1200)
Browse files Browse the repository at this point in the history
  • Loading branch information
llovvoll committed Jan 8, 2022
1 parent 14566b2 commit 66f9b4f
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .dockerignore
@@ -0,0 +1,16 @@
node_modules
npm-debug.log
Dockerfile*
docker-compose*
.dockerignore
.git
.github
.gitignore
README.md
LICENSE
.vscode
dist
dist_electron
build
images
script
42 changes: 42 additions & 0 deletions Dockerfile
@@ -0,0 +1,42 @@
FROM node:lts-alpine as build
ENV VUE_APP_NETEASE_API_URL=/api
WORKDIR /app
COPY . .
RUN yarn && yarn build

FROM nginx:alpine as app
COPY --from=build /app/dist /usr/share/nginx/html
COPY --from=build /app/netease_api /usr/src/netease_api
WORKDIR /usr/src/netease_api

RUN apk add --no-cache --repository http://nl.alpinelinux.org/alpine/edge/main libuv \
&& apk add --no-cache --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/main nodejs=16.13.1-r1 npm=8.3.0-r0 \
&& npm install

RUN echo $'server { \n\
gzip on;\n\
listen 80; \n\
listen [::]:80; \n\
server_name localhost; \n\
\n\
location / { \n\
root /usr/share/nginx/html; \n\
index index.html; \n\
try_files $uri $uri/ /index.html; \n\
} \n\
\n\
location @rewrites { \n\
rewrite ^(.*)$ /index.html last; \n\
} \n\
\n\
location /api/ { \n\
proxy_set_header Host $host; \n\
proxy_set_header X-Real-IP $remote_addr; \n\
proxy_set_header X-Forwarded-For $remote_addr; \n\
proxy_set_header X-Forwarded-Host $remote_addr; \n\
proxy_set_header X-NginX-Proxy true; \n\
proxy_pass http://localhost:3000/; \n\
} \n\
}' > /etc/nginx/conf.d/default.conf

CMD nginx ; exec node app.js
22 changes: 22 additions & 0 deletions README.md
Expand Up @@ -113,6 +113,28 @@ yarn run build

7.`/dist` 目录下的文件上传到你的 Web 服务器

## ⚙️ Docker 部署

1. 构建 Docker Image

```sh
docker build -t yesplaymusic .
```

2. 启动 Docker Container

```sh
docker run -d --name YesPlayMusic -p 80:80 yesplaymusic
```

3. Docker Compose 启动

```sh
docker-compose up -d
```

YesPlayMusic 地址为 `http://localhost`

## 👷‍♂️ 打包客户端

如果在 Release 页面没有找到适合你的设备的安装包的话,你可以根据下面的步骤来打包自己的客户端。
Expand Down
9 changes: 9 additions & 0 deletions docker-compose.yml
@@ -0,0 +1,9 @@
services:
YesPlayMusic:
build:
context: .
image: yesplaymusic
container_name: YesPlayMusic
ports:
- 80:80
restart: always

0 comments on commit 66f9b4f

Please sign in to comment.