Skip to content

velmie/laravel-migrate

 
 

Repository files navigation

Laravel migrations (based on Lumen)

Based on

Usage

docker run -v "/your/path/to/migrations:/migrations" -e "DB_HOST=host" -e "DB_PORT=3306" -e "DB_DATABASE=example" -e "DB_USERNAME=root" -e "DB_PASSWORD=secret" --rm velmie/laravel-migrate:1.1.0

Options

  • -v Bind mount a volume
    • -v "/your/path/to/migrations:/migrations"
  • -e Set environment variables
    • -e "DB_HOST=host" Specify DB host
    • -e "DB_PORT=3306" Specify DB port
    • -e "DB_DATABASE=example" Specify DB name
    • -e "DB_USERNAME=root" Specify DB username
    • -e "DB_PASSWORD=secret" Specify DB password
  • velmie/laravel-migrate:1.1.0 Docker image to use
  • --rm Automatically remove the container when it exits

By default, it uses mysql connection. You may also specify connection by adding -e "DB_CONNECTION=mysql"

Localhost

If you need to run migrations on your host machine then simply add --network="host" and specify -e "DB_HOST=127.0.0.1". Note that exactly "127.0.0.1" not "localhost" (otherwise it may try to connect via socket file).

About

Dockerized Laravel database migrations

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 87.8%
  • Dockerfile 9.4%
  • Shell 2.8%