@opentiny/tiny-toolkit-pro
Version:
TinyPro Vue:开箱即用、前后端分离的 Vue 后台管理模板
33 lines (29 loc) • 537 B
YAML
version: "3"
services:
mysql:
image: mysql:8
restart: always
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: demo_tiny_pro
ports:
- "3306:3306"
command:
- --mysql-native-password=ON
redis:
image: redis
ports:
- "6379:6379"
back:
build:
context: .
dockerfile: dockerfile
env_file:
- .env
ports:
- "3000:3000"
depends_on:
- mysql
- redis
volumes:
- ./data:/APP/dist/data