mirror of
https://github.com/thecyberlearn/quantum-website-2026.git
synced 2026-08-18 08:43:19 +00:00
18 lines
433 B
YAML
18 lines
433 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
quantumtaskai-website:
|
|
build: .
|
|
container_name: quantumtaskai-website-test
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8081:80" # Use port 8081 to avoid conflicts
|
|
environment:
|
|
- NODE_ENV=production
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:80"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 30s
|