Skip to content

shipwebdotjp/inertiajs-tutorial-laravel10

Repository files navigation

Inertia.js Tutorial on laravel 10🐳

License Stars Issues Forks

Introduction

This is a Tutorial for Inertia.js on laravel 10

Usage

$ git clone https://github.com/shipwebdotjp/inertiajs-tutorial-laravel10.git
$ cd inertiajs-tutorial-laravel10
$ make create-project # Install the latest Laravel project
$ make install-recommend-packages # Not required

http://localhost

Read this article: Inertia.js tutorial #9.

Tips

Read this Wiki.

Container structure

├── app
├── web
└── db

app container

web container

  • Base image

db container

Persistent MySQL Storage

By default, the named volume is mounted, so MySQL data remains even if the container is destroyed. If you want to delete MySQL data intentionally, execute the following command.

$ docker-compose down -v && docker-compose up