diff --git a/database/db.sqlite b/database/db.sqlite index 97ce6f9..12280de 100644 Binary files a/database/db.sqlite and b/database/db.sqlite differ diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..7f3bdfa --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,9 @@ +services: + yaravel: + image: php:apache + container_name: yaravel + restart: always + ports: + - 9001:80 + volumes: + - .:/var/www/html diff --git a/index.php b/index.php index 9b5d89e..4d94d68 100644 --- a/index.php +++ b/index.php @@ -42,4 +42,4 @@ require_once "routes/api.php"; require_once "routes/web.php"; $router->run(); -// ------------------------------------------------------------------ \ No newline at end of file +// ------------------------------------------------------------------