15 lines
242 B
YAML
15 lines
242 B
YAML
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
huaxin-base-frontend:
|
||
|
# 从当前路径构建镜像
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: Dockerfile
|
||
|
target: production
|
||
|
ports:
|
||
|
- '80:80'
|
||
|
env_file:
|
||
|
- .env
|
||
|
- .env.production
|