mirror of
https://github.com/stackrender/stackrender.git
synced 2026-09-10 03:05:42 +00:00
42699038ad
Co-authored-by: oovaa <103980029+oovaa@users.noreply.github.com>
19 lines
431 B
YAML
19 lines
431 B
YAML
services:
|
|
stackrender:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
image: stackrender:latest
|
|
container_name: stackrender
|
|
ports:
|
|
- "8080:80"
|
|
restart: unless-stopped
|
|
environment:
|
|
- NODE_ENV=production
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:80/"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|