Initial commit

This commit is contained in:
2022-04-03 10:17:37 +02:00
parent 2315419319
commit 35ae416a1e
5 changed files with 165 additions and 0 deletions

23
docker-compose.yml Normal file
View File

@ -0,0 +1,23 @@
version: '3'
services:
bot:
build:
context: .
dockerfile: Dockerfile
restart: unless-stopped
environment:
- TOKEN=$TOKEN
- ADMIN=52033876
volumes:
- ./:/usr/src/app
depends_on:
- database
database:
image: "mvertes/alpine-mongo"
restart: unless-stopped
volumes:
- db:/data/db
volumes:
db: {}