Docker support #19
2 changed files with 27 additions and 1 deletions
13
Dockerfile
Normal file
13
Dockerfile
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
# syntax=docker/dockerfile:1
|
||||||
|
|
||||||
|
FROM node:16.15.0-alpine3.15
|
||||||
|
|
||||||
|
RUN apk add dumb-init
|
||||||
|
ENV NODE_ENV=production
|
||||||
|
USER node
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
COPY --chown=node:node . .
|
||||||
|
|
||||||
|
RUN npm ci --only=production
|
||||||
|
CMD ["dumb-init", "node", "src/index.js"]
|
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