diff --git a/README.md b/README.md
index 71c149c..bf2f72d 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,17 @@
## Installation
+You can run the webpage using either Docker or by installing Ruby and Bundler on your local machine.
+
+### Docker
+
+To deploy the webpage using Docker, run the following command:
+
+```bash
+docker compose up
+```
+
+### Manual installation
+
First, you must install `Ruby` and `Bundler`.
Then, to deploy the webpage locally, you need to run:
@@ -10,7 +22,9 @@ bundle exec jekyll serve
```
## Contributing
+
PRs are welcome.
## License
-[MIT](https://github.com/santilococo/santilococo.github.io/blob/master/LICENSE.md)
+
+[MIT](https://git.slc.ar/slococo/personal-website/src/branch/master/LICENSE.md)
diff --git a/docker-compose.yml b/docker-compose.yml
index cdc8d2e..9715cae 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -2,7 +2,8 @@ version: '3'
services:
jekyll:
- image: slococo/personal-site-builder-static
+ build:
+ dockerfile: Dockerfile
restart: unless-stopped
ports:
- 9999:80