Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM python:3.9

WORKDIR /

COPY . /

RUN pip install --no-cache-dir -r requirements.txt

EXPOSE 8000

CMD ["python", "Teapot.py"]
20 changes: 20 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
services:
teapot:
build: .
ports:
- "4000:8000"
environment:
CONFIG_VERSION: "0.1"
BOT_TOKEN: "your_bot_token_here"
BOT_PREFIX: "['/teapot ', '/tp ']"
BOT_STATUS: "/teapot , /tp | Teapot.py 0.1"
STORAGE_TYPE: "flatfile"
OSU_API_KEY: "your_osu_api_key_here"
DB_HOST: "127.0.0.1"
DB_PORT: "3306"
DB_SCHEMA: "teapot"
DB_USER: "teapot"
DB_PASSWORD: "your_db_password_here"
LAVALINK_HOST: "127.0.0.1"
LAVALINK_PORT: "2333"
LAVALINK_PASSWORD: "your_lavalink_password_here"