Initial commit from Specify template

This commit is contained in:
2026-01-29 08:34:11 -03:00
commit fe2c861007
74 changed files with 22234 additions and 0 deletions

18
docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
version: '3.8'
services:
postgres:
image: postgres:16-alpine
container_name: thumbpreview-db
environment:
POSTGRES_USER: thumbpreview
POSTGRES_PASSWORD: thumbpreview123
POSTGRES_DB: thumbpreview
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
restart: unless-stopped
volumes:
postgres_data: