Does this work?

This commit is contained in:
2025-04-24 12:03:03 -06:00
parent ee44847974
commit f33dc130b8
9 changed files with 203 additions and 14 deletions

13
docker-compose.yml Normal file
View File

@ -0,0 +1,13 @@
version: '3.8'
services:
app:
image: ${IMAGE:-ghcr.io/yourusername/your-fresh-project:latest}
restart: unless-stopped
environment:
- DENO_DEPLOYMENT=production
ports:
- "3000:8000"
# If you need to persist any data
volumes:
- ./data:/app/data