Compare commits

...

2 Commits

Author SHA1 Message Date
Starthur 9b1c89854e Merge pull request 'Add docker-compose' (#3) from docker-compose into main
Reviewed-on: #3
2022-05-28 12:25:20 +02:00
Starthur 664a099cb8 Add docker-compose 2022-05-28 12:24:10 +02:00
6 changed files with 8 additions and 0 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@
node_modules
node_modules/npm/node_modules/pacote/lib/util
env.list
env_file

7
docker-compose.yaml Normal file
View File

@ -0,0 +1,7 @@
version: "2"
services:
bot_discord:
restart: always
build: ./src
container_name: bot_discord
env_file: ./env_file

View File