diff --git a/README.md b/README.md
index 5075c39..cdc1693 100644
--- a/README.md
+++ b/README.md
@@ -13,3 +13,27 @@ $ php artisan serve
```
published to http://127.0.0.1:8000
+
+### RUN using docker
+On the first time we're running the project, we must install the dependencies.
+
+To install the dependencies, run on project folder:
+```bash
+$ docker run --rm \
+ -u "$(id -u):$(id -g)" \
+ -v "$(pwd):/var/www/html" \
+ -w /var/www/html \
+ laravelsail/php82-composer:latest \
+ composer install --ignore-platform-reqs
+```
+
+To run the docker machine, run:
+```bash
+$ ./vendor/bin/sail up -d
+$ ./vendor/bin/sail npm run build
+```
+
+tp stop the docker machine:
+```bash
+$ ./vendor/bin/sail stop
+```
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..8663abe
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,26 @@
+services:
+ laravel.test:
+ build:
+ context: ./vendor/laravel/sail/runtimes/8.2
+ dockerfile: Dockerfile
+ args:
+ WWWGROUP: '${WWWGROUP}'
+ image: sail-8.2/app
+ extra_hosts:
+ - 'host.docker.internal:host-gateway'
+ ports:
+ - '${APP_PORT:-80}:80'
+ - '${VITE_PORT:-5173}:${VITE_PORT:-5173}'
+ environment:
+ WWWUSER: '${WWWUSER}'
+ LARAVEL_SAIL: 1
+ XDEBUG_MODE: '${SAIL_XDEBUG_MODE:-off}'
+ XDEBUG_CONFIG: '${SAIL_XDEBUG_CONFIG:-client_host=host.docker.internal}'
+ IGNITION_LOCAL_SITES_PATH: '${PWD}'
+ volumes:
+ - '.:/var/www/html'
+ networks:
+ - sail
+networks:
+ sail:
+ driver: bridge
diff --git a/package-lock.json b/package-lock.json
index 9229e39..227eb39 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,5 +1,5 @@
{
- "name": "2am-qrcode-site-generator",
+ "name": "html",
"lockfileVersion": 2,
"requires": true,
"packages": {
diff --git a/phpunit.xml b/phpunit.xml
index 7dbbc7c..52f3fb6 100644
--- a/phpunit.xml
+++ b/phpunit.xml
@@ -29,8 +29,7 @@