Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 269 Bytes

File metadata and controls

18 lines (14 loc) · 269 Bytes

Build Docker Image

docker build -t tasktracker .
docker run -it -p 3000:3000 tasktracker

Run and with Docker Compose: app + database

docker compose build tasktracker
docker compose up -d

Stop Compose

docker compose down