Files
tuxmate/docker-compose.yml
NIJAT a97779fa3b fix: use static export for both CF Pages and Docker
- Set output: 'export' in next.config.ts (creates /out directory)
- Replaced Node.js standalone Dockerfile with nginx serving static files
- Updated docker-compose.yml for nginx (port 80)
- Both CF Pages and Docker now use the same static build
2025-12-29 18:40:07 +04:00

19 lines
409 B
YAML

version: '3.8'
services:
tuxmate:
build:
context: .
dockerfile: Dockerfile
image: ghcr.io/retrozenith/tuxmate:latest
container_name: tuxmate
ports:
- "3000:80"
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:80"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s