21 lines
307 B
YAML
21 lines
307 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
|
|
mongodb:
|
|
image: mongo:latest
|
|
container_name: "mongodb"
|
|
ports:
|
|
- "27017:27017"
|
|
|
|
reactive-timesheet-app:
|
|
image: reactive-timesheet-app
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
depends_on:
|
|
- mongodb
|
|
ports:
|
|
- "8080:8080"
|
|
|