Docker support

This commit is contained in:
ASOwnerYT
2026-03-20 14:33:43 +13:00
parent 4d869c5d91
commit 84200ac175
5 changed files with 148 additions and 4 deletions
+18
View File
@@ -0,0 +1,18 @@
version: '3.8'
services:
app:
build:
context: .
dockerfile: Dockerfile
ports:
- "3000:3000"
environment:
- NODE_ENV=production
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:3000"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s