You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
396 B
15 lines
396 B
services:
|
|
project-name-api:
|
|
hostname: project-name-api
|
|
container_name: project-name-api
|
|
environment:
|
|
- ASPNETCORE_ENVIRONMENT=Production
|
|
# 时区问题自行修改
|
|
# - TZ=Asia/Shanghai
|
|
ports:
|
|
- "5000:8080"
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "wget --spider http://localhost/healthz || exit"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
|