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