Update README.md
This commit is contained in:
parent
5e7cb414a8
commit
415931263f
16
README.md
16
README.md
|
@ -1,5 +1,17 @@
|
||||||
## Installation
|
## 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`.
|
First, you must install `Ruby` and `Bundler`.
|
||||||
|
|
||||||
Then, to deploy the webpage locally, you need to run:
|
Then, to deploy the webpage locally, you need to run:
|
||||||
|
@ -10,7 +22,9 @@ bundle exec jekyll serve
|
||||||
```
|
```
|
||||||
|
|
||||||
## Contributing <a name="contributing"></a>
|
## Contributing <a name="contributing"></a>
|
||||||
|
|
||||||
PRs are welcome.
|
PRs are welcome.
|
||||||
|
|
||||||
## License <a name="license"></a>
|
## License <a name="license"></a>
|
||||||
[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)
|
||||||
|
|
|
@ -2,7 +2,8 @@ version: '3'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
jekyll:
|
jekyll:
|
||||||
image: slococo/personal-site-builder-static
|
build:
|
||||||
|
dockerfile: Dockerfile
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- 9999:80
|
- 9999:80
|
||||||
|
|
Loading…
Reference in New Issue