17 lines
232 B
Markdown
17 lines
232 B
Markdown
|
||
# Démarrage avec Docker
|
||
|
||
Pour builder l'image Docker :
|
||
|
||
```bash
|
||
docker build -t chill-site .
|
||
```
|
||
|
||
Pour lancer le site en local :
|
||
|
||
```bash
|
||
docker run -p 1313:1313 chill-site
|
||
```
|
||
|
||
Le site sera accessible sur http://localhost:1313
|