java-analysis/docker-compose.yaml

22 lines
480 B
YAML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

services:
upload-frontend:
image: upload-frontend:latest
container_name: upload-frontend
ports:
- "7008:80"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf # 如果需要自定义nginx配置取消注释此行
networks:
- upload-network
upload-backend:
image: upload-backend:latest
container_name: upload-backend
ports:
- "8880:8880"
networks:
- upload-network
networks:
upload-network:
driver: bridge