Add docker way
This commit is contained in:
parent
5fd4d70bfb
commit
f81f7fe4c8
1 changed files with 14 additions and 1 deletions
15
README.md
15
README.md
|
@ -6,7 +6,7 @@
|
||||||
### En local
|
### En local
|
||||||
> Cloner le repo.
|
> Cloner le repo.
|
||||||
|
|
||||||
> Spécifier un fichier `.env` en suivant l'exemple [de l'exemple](example.env).
|
> Spécifier un fichier `.env` en suivant [l'exemple](config/example.env).
|
||||||
|
|
||||||
> Installer les dépendences du bot.
|
> Installer les dépendences du bot.
|
||||||
```bash
|
```bash
|
||||||
|
@ -18,6 +18,19 @@ npm install
|
||||||
npm run main
|
npm run main
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Avec Docker (Recommandé)
|
||||||
|
> Facile avec `docker-compose`
|
||||||
|
```docker
|
||||||
|
version: "3.9"
|
||||||
|
services:
|
||||||
|
botanique:
|
||||||
|
build: https://git.kennel.ml/ConfrerieDuKassoulait/Botanique.git#main
|
||||||
|
container_name: Botanique
|
||||||
|
environment:
|
||||||
|
- TOKEN_DISCORD=your-token-goes-here
|
||||||
|
restart: unless-stopped
|
||||||
|
```
|
||||||
|
|
||||||
---
|
---
|
||||||
### Références
|
### Références
|
||||||
[Photo de profil](https://picrew.me/image_maker/1497656)
|
[Photo de profil](https://picrew.me/image_maker/1497656)
|
||||||
|
|
Loading…
Reference in a new issue