1.安装maven
sudo apt-get install maven 运行mvn -version命令以验证安装: mvn -version
将aliyun镜像添加到/usr/share/maven/conf/settings.xml目录
<mirror> <id>nexus-aliyun</id> <mirrorOf>*</mirrorOf> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/public</url> </mirror>
2.安装nodejs
首先,通过运行以下curl命令将NodeSource存储库添加到系统中:
curl -sL https://deb.nodesource.com/setup_12.x | sudo bash -
添加存储库以安装Node.js和npm类型后:
sudo apt install nodejs
键入以下命令确保已正确安装Node.js:
node --version
返回信息如下:
v12.8.1
npm -v
返回6.*.*
3.安装pig的docker环境
# 下载并运行服务端代码
git clone https://gitee.com/log4j/pig.git
cd pig && mvn clean install && docker-compose up -d
# 下载并运行前端UI
git clone https://gitee.com/log4j/pig-ui.git
cd pig-ui && npm install --registry=https://registry.npm.taobao.org
npm run build:docker && docker-compose up -d