Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 486 Bytes

README.md

File metadata and controls

43 lines (30 loc) · 486 Bytes

Nuxt w/ Tailwind Docker

Clone the project

  npx degit https://github.com/cemdrk/nuxt-docker myapp

Start Development Server

docker compose up -d

Access at http://localhost:3000/

Get Logs

docker compose logs -f app

Alternatively run

make up

Attach to shell

docker compose exec app bash

Clean

docker compose down --volumes --rmi local --remove-orphans

Alternatively run

make down