mirror of
https://github.com/johndoe6345789/snippet-pastebin.git
synced 2026-04-24 05:24:54 +00:00
16 lines
234 B
YAML
16 lines
234 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
backend:
|
|
build: ./backend
|
|
ports:
|
|
- "5000:5000"
|
|
volumes:
|
|
- snippet-data:/data
|
|
environment:
|
|
- DB_PATH=/data/snippets.db
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
snippet-data:
|