28 lines
499 B
YAML
28 lines
499 B
YAML
services:
|
|
app:
|
|
container_name: agentblock-dev
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.dev
|
|
environment:
|
|
DISABLE_HMR: "false"
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- .:/app
|
|
- /app/node_modules
|
|
|
|
api:
|
|
container_name: agentblock-api-dev
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.dev
|
|
command: npm run server
|
|
environment:
|
|
PORT: "4000"
|
|
ports:
|
|
- "4000:4000"
|
|
volumes:
|
|
- .:/app
|
|
- /app/node_modules
|