mirror of
https://gitee.com/log4j/pig-ui.git
synced 2024-12-22 12:58:55 +08:00
20 lines
376 B
YAML
Executable File
20 lines
376 B
YAML
Executable File
version: '3'
|
|
services:
|
|
pig-ui:
|
|
build:
|
|
context: .
|
|
restart: always
|
|
container_name: pig-ui
|
|
image: pig-ui
|
|
networks:
|
|
- spring_cloud_default
|
|
external_links:
|
|
- pig-gateway
|
|
ports:
|
|
- 80:80
|
|
|
|
# 加入到后端网络, 默认为 spring_cloud_default | docker network ls 查看
|
|
networks:
|
|
spring_cloud_default:
|
|
external: true
|