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

这样查看服务的时候会更优雅
main
LOVECHEN 2 years ago committed by GitHub
parent aa0487edc4
commit 0878af0239
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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'

Loading…
Cancel
Save