fix:brapi-java服务初次提交

This commit is contained in:
彭帅
2026-05-21 16:54:21 +08:00
parent 8e4418e9d6
commit fc36bc83e3
724 changed files with 590010 additions and 2 deletions

21
docker-compose-dev.yaml Normal file
View File

@@ -0,0 +1,21 @@
services:
brapi-java-server-v2:
build:
context: .
dockerfile: Dockerfile
ports:
- "8080:8080"
- "5005:5005"
depends_on:
- brapi-db
volumes:
- .\src\main\resources\properties\application.properties:/home/brapi/properties/application.properties
brapi-db:
image: postgres:17.2
environment:
POSTGRES_USER: brapi
POSTGRES_PASSWORD: password
volumes:
- /var/lib/postgresql/data
ports:
- "5433:5432"