21 lines
331 B
YAML
21 lines
331 B
YAML
services:
|
|
api:
|
|
build:
|
|
context: .
|
|
dockerfile: apps/api/Dockerfile
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "3000:3000"
|
|
|
|
web:
|
|
build:
|
|
context: .
|
|
dockerfile: apps/web/Dockerfile
|
|
environment:
|
|
API_BASE_URL: http://localhost:3000
|
|
ports:
|
|
- "4200:80"
|
|
depends_on:
|
|
- api
|