Files
reactive-timesheet-app/docker-compose.yml
2022-02-25 20:11:29 +01:00

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"