Fix email, remove docker-compose

This commit is contained in:
ASOwnerYT
2026-03-23 09:05:15 +13:00
parent 3bc7f332de
commit 587af8a74a
2 changed files with 1 additions and 19 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ export async function POST(request: NextRequest) {
'Content-Type': 'application/json',
},
body: JSON.stringify({
from: 'Cloudrite Contact Form <[email protected]>',
from: 'Cloudrite Contact Form <[email protected]>',
to: '[email protected]',
replyTo: email,
subject: `New Contact Form Submission from ${name}`,
-18
View File
@@ -1,18 +0,0 @@
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