23 lines
515 B
YAML
23 lines
515 B
YAML
|
|
version: "3.9"
|
||
|
|
|
||
|
|
services:
|
||
|
|
my-task-board:
|
||
|
|
build:
|
||
|
|
context: .
|
||
|
|
dockerfile: Dockerfile # Dockerfile para o Angular
|
||
|
|
container_name: my-task-board
|
||
|
|
ports:
|
||
|
|
- "4200:4200"
|
||
|
|
volumes:
|
||
|
|
- .:/app
|
||
|
|
command: ["npx", "ng", "serve", "--host", "0.0.0.0", "--poll=2000"]
|
||
|
|
depends_on:
|
||
|
|
- json-server
|
||
|
|
json-server:
|
||
|
|
build:
|
||
|
|
context: .
|
||
|
|
dockerfile: Dockerfile.mock # Dockerfile para o JSON Server
|
||
|
|
container_name: json-server
|
||
|
|
ports:
|
||
|
|
- "3000:3000"
|