#!/bin/bash
cd "$(dirname "$0")"
cd ..

docker run \
    --mount type=bind,source=`pwd`,target=/var/www/sku.io \
    -it \
    -p 127.0.0.1:7070:7070 \
    sku.io \
    bash -c "php artisan serve --host 0.0.0.0 --port 7070"
