perf: 加入容器名字 (#1035)

这样查看服务的时候会更优雅
This commit is contained in:
LOVECHEN
2023-03-31 11:34:31 +08:00
committed by GitHub
parent aa0487edc4
commit 0878af0239

View File

@@ -2,6 +2,7 @@ version: '3'
services:
app:
container_name: chatgpt-web
image: chenzhaoyu94/chatgpt-web # 总是使用latest,更新时重新pull该tag镜像即可
ports:
- 3002:3002
@@ -29,6 +30,7 @@ services:
# HTTPS_PROXY 代理,可选
HTTPS_PROXY: http://xxx:7890
nginx:
container_name: nginx
image: nginx:alpine
ports:
- '80:80'