Files
AgentBlock/docker-compose.yml
T
2026-06-24 22:45:34 +08:00

25 lines
420 B
YAML

services:
app:
container_name: agentblock-app
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