Skip to content

Commit aa0a518

Browse files
committed
Initial dockerization
1 parent 39fb0ee commit aa0a518

6 files changed

+102
-2
lines changed

.template.env

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
POSTGRES_USER=pythonistabot
2+
POSTGRES_PASSWORD=pythonistabot
3+
POSTGRES_DB=pythonistabot

Dockerfile

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
FROM python:3.11-slim
2+
3+
ENV PYTHONUNBUFFERED=1 \
4+
# prevents python creating .pyc files
5+
PYTHONDONTWRITEBYTECODE=1 \
6+
\
7+
# pip
8+
PIP_NO_CACHE_DIR=off \
9+
PIP_DISABLE_PIP_VERSION_CHECK=on \
10+
PIP_DEFAULT_TIMEOUT=100 \
11+
\
12+
# poetry
13+
# https://python-poetry.org/docs/configuration/#using-environment-variables
14+
# make poetry install to this location
15+
POETRY_HOME="/opt/poetry" \
16+
# make poetry create the virtual environment in the project's root
17+
# it gets named `.venv`
18+
POETRY_VIRTUALENVS_IN_PROJECT=true \
19+
# do not ask any interactive question
20+
POETRY_NO_INTERACTION=1 \
21+
\
22+
# paths
23+
# this is where our requirements + virtual environment will live
24+
PYSETUP_PATH="/opt/pysetup" \
25+
VENV_PATH="/opt/pysetup/.venv"
26+
27+
ENV PATH="$POETRY_HOME/bin:$VENV_PATH/bin:$PATH"
28+
29+
RUN apt-get update \
30+
&& apt-get install --no-install-recommends -y \
31+
git \
32+
# deps for installing poetry
33+
curl \
34+
# deps for building python deps
35+
build-essential \
36+
libcurl4-gnutls-dev \
37+
gnutls-dev \
38+
libmagic-dev
39+
40+
RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python -
41+
42+
# copy project requirement files here to ensure they will be cached.
43+
WORKDIR /app
44+
COPY poetry.lock pyproject.toml ./
45+
46+
# install runtime deps - uses $POETRY_VIRTUALENVS_IN_PROJECT internally
47+
RUN poetry install --without=dev
48+
49+
COPY . /app/
50+
ENTRYPOINT poetry run python bot.py

README.md

+14
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,20 @@ In the future we'll provide a systemd unit, pm2 config and maybe a Dockerfile fo
2121
python bot.py
2222
```
2323

24+
### Docker
25+
26+
We also provide both `Dockerfile` and `docker-compose.yml` files for running the bot in Docker.
27+
The default compose file assumes you want snekbox too, however you can comment out or remove that entire key if this is not the case.
28+
29+
Make a copy of `.template.env` and name it to `.env`, edit the values as you see fit (the defaults will work too, and be okay so long as you don't expose this database to the internet).
30+
Then a simple `docker compose up` will bring your bot up!
31+
32+
(or `docker-compose` if you are not on the latest versions...)
33+
34+
#### Notes
35+
36+
This also means that it will use internal docker networking to resolve the database and snekbox names. By default these will be `database` and `snekbox`, but these will be the **service names** in `docker-compose.yml` if you change them. Please keep this in mind when editing your config file.
37+
2438
### Support
2539

2640
As this bot is not really designed for use outside of our Guild, support provided will be **very** limited.

config.template.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ idevision = ''
55
mystbin = ''
66

77
[DATABASE]
8-
dsn = ''
8+
dsn = 'postgres://pythonistabot:pythonistabot@database:5432/pythonistabot' # assumed default
99

1010
# 50 = CRITICAL
1111
# 40 = ERROR
@@ -17,4 +17,4 @@ webhook_url = ""
1717
level = 20
1818

1919
[SNEKBOX] # optional
20-
url = 'http://localhost:8060' # default url
20+
url = 'http://snekbox:8060' # default url

database/schema.sql

Whitespace-only changes.

docker-compose.yml

+33
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,35 @@
11
services:
2+
bot:
3+
build:
4+
context: .
5+
dockerfile: Dockerfile
6+
container_name: pythonista-bot
7+
depends_on:
8+
- database
9+
10+
database:
11+
container_name: pythonista-bot-db
12+
env_file:
13+
- .env
14+
environment:
15+
- POSTGRES_USER=${POSTGRES_USER}
16+
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
17+
- POSTGRES_DB=${POSTGRES_DB}
18+
healthcheck:
19+
interval: 1s
20+
retries: 10
21+
test:
22+
[
23+
"CMD-SHELL",
24+
"pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}"
25+
]
26+
timeout: 5s
27+
image: postgres
28+
restart: always
29+
volumes:
30+
- pgdata:/var/lib/postgresql/data
31+
- ./database/schema.sql:/docker-entrypoint-initdb.d/schema.sql:ro
32+
233
snekbox:
334
container_name: snekbox-eval
435
image: ghcr.io/python-discord/snekbox
@@ -8,3 +39,5 @@ services:
839
privileged: true
940

1041
version: "3"
42+
volumes:
43+
pgdata:

0 commit comments

Comments
 (0)