docker-compose.yml 282 B

123456789101112131415
  1. version: '3'
  2. services:
  3. vue3-antdv-admin:
  4. # 从当前路径构建镜像
  5. build:
  6. context: .
  7. dockerfile: Dockerfile
  8. target: production
  9. image: buqiyuan/vue3-antdv-admin:latest
  10. ports:
  11. - '80:80'
  12. env_file:
  13. - .env
  14. - .env.production