You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
381 B
19 lines
381 B
version: "3.5"
|
|
|
|
services:
|
|
ant-design-pro_build:
|
|
build: ./
|
|
container_name: "ant-design-pro_build"
|
|
volumes:
|
|
- dist:/usr/src/app/dist
|
|
|
|
ant-design-pro_web:
|
|
image: nginx
|
|
container_name: "ant-design-pro_web"
|
|
restart: unless-stopped
|
|
volumes:
|
|
- dist:/usr/share/nginx/html:ro
|
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf
|
|
|
|
volumes:
|
|
dist:
|
|
|