Compare commits

...

3 commits

Author SHA1 Message Date
renovate[bot]
335de4634f
Merge 87f9d063cc into 7015be1355 2024-07-05 07:45:50 +00:00
renovate[bot]
87f9d063cc
chore(deps): update python docker tag to v3.12 2024-07-05 07:45:47 +00:00
realies
7015be1355
add minimal.docker-compose.yml example (#252) 2024-07-05 07:45:13 +00:00
2 changed files with 13 additions and 1 deletions

View file

@ -21,7 +21,7 @@ RUN make js
# ------------------------------------------------
FROM python:3.10 as build
FROM python:3.12 as build
ARG BUILD_EXTRAS=production

View file

@ -0,0 +1,12 @@
services:
dpaste:
container_name: dpaste
image: darrenofficial/dpaste:latest
restart: unless-stopped
environment:
DATABASE_URL: sqlite:////db/dpaste.sqlite
PORT: 8000
volumes:
- ./data/db:/db
ports:
- "8000:8000"