大数据智能推荐图书商城前端
请配合后端项目使用
书籍爬虫项目地址: hjwforever/bookCrawler
# 拉取项目
git clone https://github.com/hjwforever/bookstore.git
# 安装依赖
npm install
# 启动项目
npm run dev
前端vue项目docker镜像: aruoxi/bookstore-frontend
后端springboot项目docker镜像: aruoxi/bookstore-backend
!!注意bookStoreServer这个名称不要修改,其他的随意!!
version: "3"
services:
bookStoreServer:
restart: always
image: aruoxi/bookstore-backend
container_name: BS-backend
ports:
- 8081:8081
networks:
- vue-spring
bookStoreClient:
restart: always
image: aruoxi/bookstore-frontend
container_name: BS-frontend
environment:
TZ: Asia/Shanghai
ports:
- 8080:80
depends_on:
- bookStoreServer
networks:
- vue-spring
networks:
vue-spring: {}