quite a lot of things

This commit is contained in:
Arkaprabha Chakraborty
2025-12-06 03:05:44 +05:30
parent 39c61b7790
commit 28733e22d3
42 changed files with 4214 additions and 204 deletions

18
compose.deploy.yml Normal file
View File

@@ -0,0 +1,18 @@
# Deployment compose file
# Usage: docker compose -f compose.deploy.yml up -d
services:
app:
image: billit:latest
container_name: billit
restart: unless-stopped
ports:
- "3020:3000"
env_file:
- .env
volumes:
- db:/app/db
volumes:
db:
driver: local