Add VISA backend foundation

This commit is contained in:
jerryW123
2026-06-24 22:45:34 +08:00
parent f51f64f3bd
commit e1df743eb2
17 changed files with 1999 additions and 3 deletions
+15
View File
@@ -4,6 +4,21 @@ services:
build:
context: .
dockerfile: Dockerfile
depends_on:
- api
ports:
- "8080:80"
restart: unless-stopped
api:
container_name: agentblock-api
build:
context: .
dockerfile: Dockerfile.api
environment:
PORT: "4000"
expose:
- "4000"
ports:
- "4000:4000"
restart: unless-stopped