add minimal.docker-compose.yml example (#252)

This commit is contained in:
realies 2024-07-05 08:45:13 +01:00 committed by GitHub
parent ef1a5da22a
commit 7015be1355
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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"