Compare commits

...

2 Commits

Author SHA1 Message Date
vipg
5f5b6f93ab add 2025-11-11 14:41:50 +08:00
vipg
a587b5fba7 add 2025-11-11 14:34:23 +08:00
3 changed files with 2 additions and 3 deletions

View File

@@ -20,7 +20,7 @@ services:
- user-network
user:
image: golang:1.25.0-alpine3.22
container_name: api_user
container_name: user_api
restart: always
ports:
- 20000:80

View File

@@ -20,7 +20,7 @@ services:
- user-network
user:
image: user-api:1.0.0
container_name: api_user
container_name: user_api
restart: always
ports:
- 20000:80

View File

@@ -30,5 +30,4 @@ func main() {
// 启动服务监听80端口
zap.L().Info("✅ 服务启动在80端口")
r.Run(":80")
zap.L().Info("💻 用户服务启动成功")
}