feat: 更新接口

This commit is contained in:
GukSang.Jin
2026-03-03 16:49:57 +08:00
parent 2a312e798f
commit 874ed80fe0
18 changed files with 376 additions and 367 deletions

24
docker-compose.yml Normal file
View File

@@ -0,0 +1,24 @@
name: petwash
services:
petwash-api:
build:
context: .
dockerfile: PetWash.Api/Dockerfile
container_name: petwash-api
ports:
- "5000:80"
environment:
- ASPNETCORE_ENVIRONMENT=Production
- DatabaseProvider=MySql
- ConnectionStrings__MySqlConnection=Server=101.132.182.216;Database=petwash;User=sc_root;Password=Shsc#$@2024#@!;Port=3306;CharSet=utf8mb4;AllowPublicKeyRetrieval=True;
restart: unless-stopped
networks:
- petwash-network
volumes:
petwash-data:
networks:
petwash-network:
driver: bridge