oa_front/docker-compose.yml

22 lines
402 B
YAML
Raw Normal View History

2024-02-27 17:22:27 +08:00
version: '3'
services:
huaxin-base-frontend:
# 从当前路径构建镜像
build:
context: .
dockerfile: Dockerfile
2024-03-04 13:17:32 +08:00
target: production
2024-02-28 10:51:39 +08:00
container_name: huaxin-base-frontend
2024-02-27 17:22:27 +08:00
ports:
2024-03-27 16:54:11 +08:00
- '3001:3001'
2024-02-27 17:22:27 +08:00
env_file:
- .env
- .env.production
2024-02-28 10:51:39 +08:00
networks:
2024-02-28 11:54:30 +08:00
- huaxin_front_net
2024-02-28 10:51:39 +08:00
networks:
2024-02-28 11:54:30 +08:00
huaxin_front_net:
2024-02-28 11:58:16 +08:00
name: huaxin_admin_net
external: true