Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: DarrenOfficial/dpaste
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4c7aec97da50763d3cd90bf6bf7b203c5763112f
Choose a base ref
..
head repository: DarrenOfficial/dpaste
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c2678a7a7bc82f22559bad50a0b8c49c4dce2ee0
Choose a head ref
Showing with 12 additions and 0 deletions.
  1. +12 −0 minimal.docker-compose.yml
12 changes: 12 additions & 0 deletions minimal.docker-compose.yml
Original file line number Diff line number Diff line change
@@ -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"