Views
No views yet
npm install -g yarn1$ git clone https://github.com/<owner>/dashboard.git
2$ cd dashboard
3# Here, depending on your environment, checkout corresponding branch, otherwise you might have incompatibilities
4$ git checkout release/3.8
5$ yarnyarn config set registry https://registry.npm.taobao.org1// dev.server.config.js
2module.exports = {
3 open: process.platform === 'darwin',
4 port: 8080,
5 proxy: {
6 '/api': {
7 // Be sure to set it to the address of the environment, which is HTTPS
8 target: 'https://192.168.1.10',
9 ws: true,
10 changeOrigin: true,
11 secure: false,
12 },
13 },
14}yarn serveyarn buildREGISTRY=registry.cn-beijing.aliyuncs.com/yunionio TAG=your-tag ./scripts/docker-push.sh