Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 845 Bytes

README.md

File metadata and controls

33 lines (27 loc) · 845 Bytes

Next.js + Typescript + Docker

This repository was bootstrapped with mtilda's "Next.ts with Docker" template, inspired by Vercel's Next.js example "With Docker"

Developement

Prerequisits

Setup

  1. git clone and cd into this repository; and
  2. Spin up your application in a container with
    docker-compose up
    or
    docker-compose up -d # detached mode lets you keep using your terminal

Linting

docker-compose run frontend yarn lint

Shut down the containers

docker-compose down

Destroy all containers and volumes

docker system prune -a --volumes