17 lines
323 B
YAML
17 lines
323 B
YAML
services:
|
||
nginx:
|
||
image: nginx:09051708
|
||
container_name: nginx-proxy
|
||
ports:
|
||
- "8081:80"
|
||
- "4430:443"
|
||
# 配置已内嵌于镜像(构建时 COPY 进 /etc/nginx),故不挂载 conf.d
|
||
restart: unless-stopped
|
||
networks:
|
||
- trim-default
|
||
|
||
networks:
|
||
trim-default:
|
||
external: true
|
||
|